Javascript 기초-1
0. 출력 console.log() 1. String string0 = "like this" string1 = "this is a string" string2 = 'single quotes and double quotes are equivalent' string3 = `using backticks allow you to set arguments ${string0}` # template literal 2. const (boolean, integer, float) const number = 999 const negative = -999 const fraction = .250 const b = true 3. let (dynamic typing) let age # implicit declaration -> ag..
2024.04.10