Anna Wright (oracle)'s status on Wednesday, 19-Dec-18 06:12:02 UTC

  1. Javascript is so freaking weird, I can have an object with methods

    var example = {
    addOne: function(x) {return x + 1}
    }

    And I can call the addOne function by using a string to get it from inside the object,

    example["addOne"](0);

    Wednesday, 19-Dec-18 06:12:02 UTC from web