Skip to content

Instantly share code, notes, and snippets.

@QuatoHub
Created September 8, 2021 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QuatoHub/c8e71dc8c4ac986d7493cdf650e62017 to your computer and use it in GitHub Desktop.
Save QuatoHub/c8e71dc8c4ac986d7493cdf650e62017 to your computer and use it in GitHub Desktop.
// 동등 비교
5 == 5; // true
// 타입은 다르지만 암묵적 타입 변환을 통해 타입을 일치시키면 동등하다.
5 == "5"; // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment