Well, I'm currently working on a project right now but I have a problem and the problem is that I dont know how to get access to a value inside an object of a variable.
var example= {
"one": [{
"test": [15,26,56]
}]
}
What can I do to get access into 15, I tried something like:
example.one.test[0]
but it didnt work. any hand? :)