Skip to content

18.07.03

chy edited this page Jul 31, 2018 · 1 revision
[Js] multiline string
var str = "\
this\
is\
multi\
line\
string\
"
[JQuery] first, child selector
$(this).first(); // selector로 선택된 객체 중에 제일 처음 객체만 선택
$("div:first-child"); // 첫번째 child
$("div:nth-child(n)"); // n번째 child
[Js] string array to array
var array = JSON.parse("["a",1,2,"b"]") // json string to array

Clone this wiki locally