var mutableArr = [1, 2, 3, 4]; arr.push(5); console.log(mutableArr); // [1, 2, 3, 4, 5] A typo?
https://habrahabr.ru/company/devexpress/blog/302118/ (first example) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push (mdn ref )
arr, then decided to rename it for greater clarity, but by mistake it was not renamed everywhere. :) - Yaant