Is there any performance difference with the slice () method with or without the last argument [end]?
Example:
var m = ['But', 'Will', 'It', 'Blend', 'Question'];
var r = m.slice(1,3);
OR
var r = m.slice(2);
PS: not the result, as it is, but a performance problem.
source
share