반응형
콘솔 로그 출력 : console.log("콘솔 테스트!");
자료형
- 숫자형 : 정수형(Integer), 소수(floating point)
- 문자형
- 불린(Boolean) : true 또는 false 값을 가지는 자료형
추상화(Abstraction) : 구체적인 정보를 빼고 목적에 맞는 꼭 필요한 핵심만 가지고 있는 것
// 변수 선언
let iwmsLocatorId;
iwmsLocatorId = 3000;
console.log(iwmsLocatorId);
식별자는 '문자(a-z, A-Z)', '밑줄(_)' 혹은 $로 시작 두 번째 글자는 숫자(0-9)'도 가능함.
대소문자 구별함.
예약어 사용 안함(if, for, let....)
변수명은 camelCase 스타일로 작성함.
https://github.com/ParkSB/javascript-style-guide
https://google.github.io/styleguide/jsguide.html
https://www.w3schools.com/js/js_conventions.asp
https://standardjs.com/rules-kokr.html
https://github.com/rwaldron/idiomatic.js/tree/master/translations/ko_KR
https://github.com/happygrammer/typescript
https://github.com/owjs3901/rp_htmlcss
반응형
'개발자정보' 카테고리의 다른 글
React (0) | 2023.05.05 |
---|---|
Modernizr (0) | 2023.05.05 |
mariadb 문자열 합치기 (0) | 2023.03.18 |
Open JDK 다운로드 받는 곳, & Maria DB 원도우 환경 설치 파일 (0) | 2023.01.14 |
React 학습자료 #001 (0) | 2023.01.13 |