That's great news becouse JSON, the format many webservices use to provide information, is basically a JavaScript object.
So, it is possible to load information from a WebService or database in JSON format and process all the information within NeoAppBuilder without plugins.
Sample code:
Code: Select all
SetVar [person] {name:"John",surname:"Doe",age:35}
SetVar [person.name] "Peter"
AlertBox "Object info" "This person is [person.name] [person.surname] and he is [person.age] years old" ""