JS introductory notes
Original link: https://yzyyz.top/archives/start_with_JS.html Introductory stuff, nothing fancy variable var var declares a variable with global or function level scope 1 2 3 4 5 6 7 8 9 10 var a; var b = “123” ; var c = 0 , d = 1 ; // destruct var li = [ 1 , 2 , […]
JS introductory notes Read More »