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 |
Tags
- flex-shrink
- JS
- flexbox
- img 확대
- close together
- module wrapper function
- Express
- Object.create
- css variables
- improve-iq-by-up-to-10%!
- flex-grow
- select by attribute
- css 오버레이
- Prototype
- css
- express-handlebars
- regExp
- ajax
- 정규표현식
- Sass
- just-one-small-sip
- shit-christmas
- flex-basis
- es6
- node
- 디자인패턴
- css grid
- Engoo
- Node.js
- 무료 백엔드 배포
Archives
- Today
- Total
목록Builtin (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