Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get columns of array list json js

if (results.length > 0){ 
  var columnsIn = results[0]; 
  for(var key in columnsIn){
    console.log(key); // here is your column name you are looking for
  } 
}else{
    console.log("No columns");
}
 
PREVIOUS NEXT
Tagged: #columns #array #list #json #js
ADD COMMENT
Topic
Name
2+8 =