Skip to content

Instantly share code, notes, and snippets.

@wmadden
Last active November 28, 2019 09:06
Show Gist options
  • Save wmadden/6522587db727e046bc78abf2de76be4e to your computer and use it in GitHub Desktop.
Save wmadden/6522587db727e046bc78abf2de76be4e to your computer and use it in GitHub Desktop.
function getUser() {
return {
id: '123',
namee: 'Tom Hanks', // misspelled
};
}
console.log(getUser().name);
// ^^^^
// Property 'name' does not exist on type '{ id: string; namee: string; }'. Did you mean 'namee'?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment