Skip to content

Instantly share code, notes, and snippets.

Created September 30, 2016 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/782630c3460eec8de5812e634c3a1c63 to your computer and use it in GitHub Desktop.
Save anonymous/782630c3460eec8de5812e634c3a1c63 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/bipeduleyu
<!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>
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