Search Results for: Paperboard containers
. # thing / list of one thing "it's a thing" containers an array is a sequence of things. # array [ 1, 2, 5 ] [ "egg", "sausage", "bacon" ] arrays are heterogenous, i.e. they can contain things of different types. [ 1, 2, "red", "blue" ] [ null, false, 0, '', "" ] arrays are themselves things, and can
value, until which it's undefined. symbols are either variable or constant. # symbols var total = 0 const url = " a constant symbol can't be assigned a value more than once (even if the second assignment repeats the value). # these are okay ++total total += 10 total = 100 # this is not okay url = " containers...
http://www.vcode.org/
. # thing / list of one thing "it's a thing" containers an array is a sequence of things. # array [ 1, 2, 5 ] [ "egg", "sausage", "bacon" ] arrays are heterogenous, i.e. they can contain things of different types. [ 1, 2, "red", "blue" ] [ null, false, 0, '', "" ] arrays are themselves things, and can
value, until which it's undefined. symbols are either variable or constant. # symbols var total = 0 const url = " a constant symbol can't be assigned a value more than once (even if the second assignment repeats the value). # these are okay ++total total += 10 total = 100 # this is not okay url = " containers...
https://www.vcode.org/