Skip to content

Instantly share code, notes, and snippets.

@atrunelle
Created June 26, 2018 14:29
Show Gist options
  • Save atrunelle/b629484d248ea7e5882785729554028c to your computer and use it in GitHub Desktop.
Save atrunelle/b629484d248ea7e5882785729554028c to your computer and use it in GitHub Desktop.
Check strings equals TS
// TypeScript
function isEqual(a: string, b: string): boolean {
return a === b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment