Compare Page Revisions
« Older Revision - Back to Page History - Newer Revision »
num.toFixed(x)
x
s.charAt()
s.charCodeAt()
s.concat()
s.fromCharCode()
s.indexOf()
s.lastIndexOf()
s.match()
s.replace()
s.search()
s.slice()
s.split()
s.substr()
s.substring()
s.toLowerCase()
s.toUpperCase()
s.valueOf()
function stringContains(a, b, caseSensitive){ if (caseSensitive == undefined) caseSensitive = true; if (caseSensitive) return (a.indexOf(b) >= 0); else return (a.toUpperCase().indexOf(b.toUpperCase()) >= 0); }
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.