Skip to content

Instantly share code, notes, and snippets.

@hw0k
Created August 30, 2020 11:28
Show Gist options
  • Save hw0k/d4f584f1688316634f75b35f34e043ed to your computer and use it in GitHub Desktop.
Save hw0k/d4f584f1688316634f75b35f34e043ed to your computer and use it in GitHub Desktop.
TSB 1
// Problem 1
const obj = { width: 10, height: 15 };
const area = obj.width * obj.heigh; // NaN
// Problem 2
function checkNumberIsZero(par) {
return par == 0;
}
checkNumberIsZero(0); // true
checkNumberIsZero([]); // true
checkNumberIsZero(""); // true
checkNumberIsZero(false); // true
checkNumberIsZero(this); // ? (this에 따라 달라짐)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment