JSFiddle - React, Tailwind, and code Playground

by Patel1327

HTML

<button onclick="arraystart()">
start
</button>

JavaScript

function arrayStart() {

  var x = [];
  x[0] = 1;
  x[1] = 123;
  x[2] = 123;
  x[3] = 155;
  x[4] = 155;
  x[5] = 155;
  x[6] = 155;
  x[7] = 155;
  x[8] = 121;
}