Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function shouter(whatToShout) {
  2. return whatToShout.toUpperCase() + "!!!";
  3. }
  4.  
  5. console.log(shouter("fee figh foe fum"));
  6.  
  7. function testShouter() {
  8. const whatToShout = 'fee figh foe fum';
  9. const expected = 'FEE FIGH FOE FUM!!!';
  10. if (shouter(whatToShout) === expected) {
  11. console.log('SUCCESS: `shouter` is working');
  12. } else {
  13. console.log('FAILURE: `shouter` is not working');
  14. }
  15. }
  16.  
  17. testShouter();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement