Guest User

Untitled

a guest
Jul 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function shouter(whatToShout) {
  2. return `${whatToShout.toUpperCase()}!!!`;
  3. }
  4.  
  5.  
  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();
Add Comment
Please, Sign In to add comment