JSFiddle - React, Tailwind, and code Playground

by Sir_Pepe

JavaScript

(function(){

  "use strict";

  var a = [42];
  Object.preventExtensions(a);
  a.push(23);
  a.push(23);
  a.push(23);

  console.log(a);
  console.log(a.length);

})();