Guest User

Untitled

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