Click here to Skip to main content
15,896,359 members
Articles / Programming Languages / Javascript

JavaScript string helper class

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
16 Feb 2010CPOL 26.4K  
Save the following code to a .js file or add to an existing one you might have:function stringHelper() { this.isNullOrEmpty = function(str) { if (null == str) return true; str = this.trim(str); return str.length == 0; } this.trim =...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Codely
South Africa South Africa
Me, a disorder of the brain that results in a disruption in a person's thinking, mood, and ability to relate to others.

Comments and Discussions