Skip to content

Instantly share code, notes, and snippets.

@JNaeemGitonga
Created March 30, 2017 12:36
Show Gist options
  • Save JNaeemGitonga/c89f392ce368074fde11b930921d2578 to your computer and use it in GitHub Desktop.
Save JNaeemGitonga/c89f392ce368074fde11b930921d2578 to your computer and use it in GitHub Desktop.
JS Bin// source https://jsbin.com/wuxinac
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
function shouter(whatToShout) {
// your code here
return whatToShout.toUpperCase() + '!!!';
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!
*/
// 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();
</script>
<script id="jsbin-source-javascript" type="text/javascript">function shouter(whatToShout) {
// your code here
return whatToShout.toUpperCase() + '!!!';
}
/* From here down, you are not expected to
understand.... for now :)
Nothing to see here!
*/
// 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();</script></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment