Searched defs:valueOf (Results 1 – 13 of 13) sorted by relevance
161 var num_1 = { valueOf: function() { result += "first"; return 1; } }; method162 var num_2 = { valueOf: function() { result += "second"; return 2; } }; method168 num_1 = { valueOf: function() { result += "first"; return 1; } }; method174 num_2 = { valueOf: function() { result += "second"; return 2; } }; method
47 let bad_start = { valueOf: function () { array.push(2 * i); return -1; } }; method48 let bad_count = { valueOf: function () { array.push(2 * i + 1); return 1; } }; method
18 valueOf: function () { method
20 static valueOf() { } method in C3
23 let radix = { valueOf: function() { result = "InvalidRadix"; throw null; } }; method
17 valueOf: function () { method
40 obj.valueOf = function() { function
104 get valueOf() { method in C6
99 valueOf:number; property in C6
283 arr.indexOf(10, { valueOf() { method286 arr.indexOf(10, { valueOf() { method320 valueOf() { method331 valueOf() { method665 valueOf(a9) { method in C3
693 valueOf() { method698 valueOf() { method
58 print(JSON.stringify({ x : 1, "1": 1 }, [{ valueOf: function() { return 1;} }])); method