Rajesh Segu

Technology and Random

Post archive for ‘Java Script’

Evaluating JSON Data

Evaluating JSON data is the most fundamental and common use-case for any modern ajax based web application. The most commonly used method to evaluate json strings has always been eval() but there are few other methodologies that I have learnt recently.
1. eval()

var jsonData = window["eval"](  "("  +  jsonString +  ")"   );

Support:  All Browsers variants
2. new Function()

var [...]

Tutuorials for Advanced JavaScript

These are the best tutorials out there, don’t miss these if you are/wannabe javascript programmer. ( Hold your nerves untill these videos load. )

PS: [...]