Skip to content

Instantly share code, notes, and snippets.

@mferoc
Created June 8, 2020 19:52
Show Gist options
  • Save mferoc/bc391f1592f5df2d204ac85bebbb8fe9 to your computer and use it in GitHub Desktop.
Save mferoc/bc391f1592f5df2d204ac85bebbb8fe9 to your computer and use it in GitHub Desktop.
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