Skip to content

Instantly share code, notes, and snippets.

@CodeSigils
Created October 13, 2016 10:57
Show Gist options
  • Save CodeSigils/c2a67875039be8a6fbefc6cc25d815a0 to your computer and use it in GitHub Desktop.
Save CodeSigils/c2a67875039be8a6fbefc6cc25d815a0 to your computer and use it in GitHub Desktop.
Shouter
function shouter(whatToShout) {
return whatToShout.toUpperCase() + '!!!';
}
// tests
function testShouter() {
var whatToShout = 'fee figh foe fum';
var expected = 'FEE FIGH FOE FUM!!!';
if (shouter(whatToShout) === expected) {
console.log('SUCCESS: `shouter` is working');
}
else {
console.log('FAILURE: `shouter` is not working');
}
}
testShouter();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment