Created
June 8, 2020 19:52
-
-
Save mferoc/bc391f1592f5df2d204ac85bebbb8fe9 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
String.prototype.equals = function(str) {return (this.toString() === str) ? true : false} | |
function igual(str1, str2) { | |
return str1.equals(str2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment