-
-
Save shahab570/9d1f042973581ea2d2af197ed9029f9f 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 eat = () => { | |
console.log("Men cat eat"); | |
}; | |
const eat = () => { | |
console.log("Women cat eat"); | |
}; | |
eat(); //Uncaught SyntaxError: Identifier 'eat' has already been declared |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment