JavaScript

Random Bible Verse – Online Tool

Posted by stevenmarkford on March 11, 2012 at 1:17 am

(See the latest version here: http://www.stevenmarkford.com/random-bible-verse-version-2/) Sometimes there is nothing better than reading a random Bible verse. It was King David who once said “We may throw the dice, but the LORD determines how they fall.” – Proverbs 16:33. So, I decided to post this little random Bible verse utility: Click here to get a [...]

JSON String to JavaScript Object

Posted by stevenmarkford on March 29, 2011 at 1:39 pm

In JavaScript it is very easy to obtain a JSON object from a JSON string. var JSONObject = eval( ‘(‘ + someJSONtext + ‘)’ ); Reference: http://json.org/js.html