I want to read stored values in a array one by one and append it in a html table I can read data from array it fetches all values at one time I want to read values one by one but there is some issue .Please help me.
<script>
var time="";
var temp="";
var current="";
$(document).ready(function storetime(){
time=['11:34:4','11:43:4','11:55:4','11:22:4','11:11:4'];
temp=[33,44,55,66,77];
current=[22,33,444,55,666];
var tim =[[time,temp,current]];
$.each(tim,function(i,val){
$('#abc').append(`<tr><td>`+(this)[0]+`</td><td>`+(this)[1]+`</td><td>`+(this)[2]+`</td></tr>`);
});
});
</script>
````````output``````````````
Time Stamp Temperature Current
11:34:4,11:43:4,11:55:4,11:22:4,11:11:4 33,44,55,66,77 22,33,444,55,666
`````````````````I want output like this``````````
Time Stamp Temperature Current
11:34:4 22 44
11:34:5 44 44
11:34:6 33 22
11:34:7 11 0
11:34:8
forloop?array in an arrayto make the situation more complex, inefficient? Use them separately, make 1 row and then usefor loopfor all of them.