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

python - how we can use ajax() in views.py in django? -

matlab - Using loops to get multiple values into a cell -

python - Sequence Pattern recognition with Pybrain -