Skip to content

Instantly share code, notes, and snippets.

@QuatoHub
Last active September 11, 2021 09:08
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/0bc816d186ae9f40e8ddaa450e665d84 to your computer and use it in GitHub Desktop.
Save QuatoHub/0bc816d186ae9f40e8ddaa450e665d84 to your computer and use it in GitHub Desktop.
// 카멜 케이스(camelCase)
let firstName;
// 스케이크 케이스(snake_case)
let firt_name;
// 파스칼 케이스(PascalCase)
let FirstName;
// 헝가리언 케이스(typeHungarianCase)
let strFirstName; // type + identifier
let $elem = document.getElementById("myId"); // DOM 노드
let observable$ = fromEvent(document, "click"); // RxJS 옵저버블
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment