Created
March 2, 2020 12:18
-
-
Save shuantsu-zz/ad8219becd3f257bbf769e40608b7857 to your computer and use it in GitHub Desktop.
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
const does = (container) => ({ | |
"contain": (what) => { | |
return container.indexOf(what) > -1; | |
}, | |
}); | |
const name = "Filipe Teixeira"; | |
if ( does(name).contain("Teixeira") ) { | |
console.log("Você é Teixeira"); | |
} else { | |
console.log("Você não é Teixeira") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment