Skip to content

Instantly share code, notes, and snippets.

View CodeSigils's full-sized avatar

CS CodeSigils

View GitHub Profile
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) {