Lines Matching refs:obj1
32 var obj1 = {a:2, b:3, c:4}; 33 var obj2 = {d:1, ...obj1, e:5}; 61 var obj1 = {}; 63 obj1.__proto__ = v1; 65 print(obj1[str]); 66 obj1[str] = 5; 67 print(obj1[str]); 71 print(obj1[str1]); 72 obj1[str1] = 5; 73 print(obj1[str1]);