I want to remove the first element from a JSON-array. The Json-array has this format:
[{"hyperperiod":1200},{"x":"Process0Application1Data1","y":
["0.00","5.00"],"fillColor":"#008FFB"}, ...]
The Result should be:
[{"x":"Process0Application1Data1","y":
["0.00","5.00"],"fillColor":"#008FFB"}, ...]
I tried using splice
console.log(response.data);
response.data.splice(0, 1);
console.log(response.data);
response.data.splice(0, 1);