Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 10, 2021 10:00
Show Gist options
  • Save shahab570/9d1f042973581ea2d2af197ed9029f9f to your computer and use it in GitHub Desktop.
Save shahab570/9d1f042973581ea2d2af197ed9029f9f to your computer and use it in GitHub Desktop.
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