javascript - Ajax result is not an object -


My AJAX result is

  ["1", "O"]   

I'm trying to reach 1, but

  console.log (Results [0]);   

gives me

'['

How can I make it as an object and Can I already get the element of my array result?

Try it that you are listed in the string of your result

  var resultObj = JSON.parse (results); Console.log (resultsObj [0]);    

Comments

Popular posts from this blog

sql - Return Function using Cursor -

sql server - How to use pivot in this table -

javascript - Is there any way to add a new parameter to a function programmatically? -