Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- just-one-small-sip
- css grid
- es6
- css variables
- 정규표현식
- flex-shrink
- express-handlebars
- select by attribute
- improve-iq-by-up-to-10%!
- ajax
- Sass
- shit-christmas
- 디자인패턴
- module wrapper function
- close together
- flex-basis
- Express
- 무료 백엔드 배포
- css 오버레이
- node
- JS
- regExp
- flexbox
- flex-grow
- Node.js
- Object.create
- Prototype
- Engoo
- img 확대
- css
Archives
- Today
- Total
목록constructor (1)
Built in Constructor
JS에 기본적으로 내장되어 있는 생성자들을 이야기한다. primitive type의 데이터들은 해당 생성자로 생성할 경우 object로 생성됨에 주의하고, 정규표현식 같은 경우에는 생성자를 이용할 때 escaping을 해줘야 한다는 점에 주의하도록 하자. 또한, 해당 생성자들을 이용할 경우 시간이 더 오래 걸린다고 한다. // String const name1 = "jian"; const name2 = new String("jian"); // name2.foo = "bar"; console.log(name2); console.log(typeof name1); // String console.log(typeof name2); // Object if (name2 === "jian") { // No, beca..
2021 프론트 엔드 로드맵 따라가기/JS
2021. 6. 5. 10:48