2020-11-12 TIL
2020/11/09 - [TIL(today I learned)] - 2020-11-09 TIL
2020/11/10 - [TIL(today I learned)] - 2020-11-10 TIL
2020/11/11 - [TIL(today I learned)] - 2020-11-11 TIL
String Template Literals -SUPER USEFUL
template literals의 syntex는 ` ~~~ `
여기서는 quote( ' )가 아닌 back-tick( ` )을 이용한다.
string은 끼워넣기(embed)가 안되서 string을 이용한 코딩을 할때 불편한 점이 많지만
template literals는 내가 정한 변수들(variables)를 끼워넣을 수 있어서(embed) 굉장히 편하다.
Undefined & Null
null = nothing;
undefined = not defined; 'i don't know'
Undefined instead is a concept that just means something. Not being there, not being defined.
It doesn't mean nothingness.
Random Numbers & The Math Object
developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math
Math
Math is a built-in object that has properties and methods for mathematical constants and functions. It’s not a function object.
developer.mozilla.org
코딩 연습 20: String Template Literal Exercise
embed 할때 중괄호 넣는줄 모르고 소괄호를 계속 넣다가 헤맸다...