I want to write a function in Javascript which will give me particular entry by its position/index in the array -
my code below
var student = [ { "name":[ "harshit","himanshu","sumit" ], "field":[ "it","finance","marketing" ], "id":[ 1,2,3 ] } ]
please provide me function find value of "himanshu" array.
Comments
Post a Comment