I want to do that in javascript:
for (int i = 0; i <= pieces; i++)
{
List<product> piecesProuducts = productList.Skip(i * 2).Take(2).ToList();
}
I have a json array. I want to get two records block from this json array as above linq code in javascript. Is that possible and how?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
A JSON array is just a JavaScript array, so you can use push and slice.
Here’s an example:
var productList = [1,2,3,4,5,6,7,8,9,0]
var piecesProuducts = []
for (var i = 0; i <= 4; i++)
{
piecesProuducts.push(productList.slice(i*2, i*2+2));
}
console.log(piecesProuducts)
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0