Celmaun
Celmaun
Both of them have identical behavior with jQuery but using Zepto `$('form').trigger('submit')` doesn't actually call the native `form.submit()` method to actually submit the form while `$('form').submit()` does. Is this intentional?
While I'm not opposed to this particular proposal because it's useful to have syntactic sugar for `this.constructor.staticMethod()` (as `class.staticMethod()`) in instance methods. Isn't the current behavior in static methods a...
As a proponent of immutable data structures, I consider cloning to be an essential function on data structures. For simple Map's we can just do `new Map(map)`, but doing the...