diff --git a/cheatsheet/snapshot.html b/cheatsheet/snapshot.html index 8b63434..70e5091 100644 --- a/cheatsheet/snapshot.html +++ b/cheatsheet/snapshot.html @@ -171,12 +171,13 @@

Lists

Objects

-
-
var = obj["name"];
-
  get value from object by string
-
var = obj.name;
-
  get value from object by identifier
-
+ obj = object(…,name=value,…); + obj = object(…,[…,["name",value],…],…); + obj = object(…,object,…); + obj = object(…,[…,["name"],…],…); + var = obj.name; + var = obj["name"]; + has_key(object,"name");

Boolean operations