VSCode show element index in array

Viewed 34

I hava big arrays inside vscode and most count elements to find index of one element inside an array ! I need something inside VSCode to show me array index to make my work easy.

function: [
    {
      type: "word",
    },
    {
      type: "operator",
      data: ":",
    },
    {
      type: "word",
      most:types,
      check: 12,
    },
    {
      type: "word",
      require: true,
    },
    {
      type: "operator",
      data: ",",
      check: 0,
    },
    {
      type: "word",
      require: true,
    },
    {
      type: "word",
      require: true,
      loop:12
    },
  ]
0 Answers
Related