Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Thiti V. Sintopchai http://thitiv.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

JavaScript String Comparison

// Example use
// if (isSameString(tags, "_none_")) ...

   1  
   2        function isSameString( s1, s2 )
   3        {
   4          alert( "s1: " + s1.toString() );
   5          alert( "s2: " + s2.toString() );
   6  
   7        	if ( s1.toString() == s2.toString() )
   8          {
   9        	  return true;
  10          }
  11          else
  12          {
  13            return false;
  14          }
  15        }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS