Skip to content

Instantly share code, notes, and snippets.

@stafa-san
Last active September 22, 2021 13:42
Show Gist options
  • Save stafa-san/13a2e156e48ca6524b4925b80b328134 to your computer and use it in GitHub Desktop.
Save stafa-san/13a2e156e48ca6524b4925b80b328134 to your computer and use it in GitHub Desktop.
interview form queston 1
console.log(3, typeof(3)); // 3 "number"
console.log("a", typeof("a")); // "a" "string"
console.log(2, typeof(2), "a", typeof(2)); // 2 "number" "a" "string"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment