-
-
Save jmccaffrey/cd483a443b26653440c29eef30ab436d to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/bipeduleyu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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 textNormalizer(text) { | |
// chaining together method calls like this is called | |
// *method chaining* | |
return text.toLowerCase().trim(); | |
} | |
// tests | |
function testTextNormalizer() { | |
var text = " let's GO SURFING NOW everyone is learning how "; | |
var expected = "let's go surfing now everyone is learning how"; | |
if (textNormalizer(text) === expected) { | |
console.log('SUCCESS: `textNormalizer` is working'); | |
} | |
else { | |
console.log('FAILURE: `textNormalizer` is not working'); | |
} | |
} | |
testTextNormalizer(); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">function textNormalizer(text) { | |
// chaining together method calls like this is called | |
// *method chaining* | |
return text.toLowerCase().trim(); | |
} | |
// tests | |
function testTextNormalizer() { | |
var text = " let's GO SURFING NOW everyone is learning how "; | |
var expected = "let's go surfing now everyone is learning how"; | |
if (textNormalizer(text) === expected) { | |
console.log('SUCCESS: `textNormalizer` is working'); | |
} | |
else { | |
console.log('FAILURE: `textNormalizer` is not working'); | |
} | |
} | |
testTextNormalizer();</script></body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function textNormalizer(text) { | |
// chaining together method calls like this is called | |
// *method chaining* | |
return text.toLowerCase().trim(); | |
} | |
// tests | |
function testTextNormalizer() { | |
var text = " let's GO SURFING NOW everyone is learning how "; | |
var expected = "let's go surfing now everyone is learning how"; | |
if (textNormalizer(text) === expected) { | |
console.log('SUCCESS: `textNormalizer` is working'); | |
} | |
else { | |
console.log('FAILURE: `textNormalizer` is not working'); | |
} | |
} | |
testTextNormalizer(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment