View difference between Paste ID: U65e8vG2 and t2YVvBk6
SHOW: | | - or go back to the newest paste.
1
/*
2
3
Best JavaScript quiz I have created so far :-)
4
5
*/
6
7
​var someObject = {
8
    foo: function() {
9
        /* ... */
10
    },
11
    bar: function() {
12
        /* ... */
13
    }        
14
};
15
16
var test = Math.random() > 0.5;
17
18
/*
19
20
Question: What is the difference between the following calls?
21
22
*/
23
24
someObject[test ? "foo" : "bar"]();   
25
(test ? someObject.foo : someObject.bar)();​​​