Contact: aviboots(AT)netvision.net.il
41,427 questions
53,974 answers
573 users
var s = "100 points"; document.write(parseInt(s)); /* run: 100 */
var s = "100 90 points"; document.write(parseInt(s)); /* run: 100 */
var s = "100.83 percent"; document.write(parseInt(s)); /* run: 100 */
var s = "100"; document.write(parseInt(s)); /* run: 100 */
var s = "points set to 100"; document.write(parseInt(s)); /* run: NaN */
var s = "17.39 points set to 10.33"; document.write(parseInt(s)); /* run: 17 */