Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  trim() in JavaScript

In the past, JavaScript didn't define the trim() function for String object. This makes web programmers frustrated since they often need to implement this function themselves if they want to handle user inputs. The new version of ECMA-262 introduces the trim() function.15.5.4.20   String.prototype.trim ( )     The following steps are taken:     1.   Call CheckObjectCoercible passing the this value as its argument.   2.   Let S be the result of calling ToString, giving it the this value as its argument.   3.  L...

3,735 0       JAVASCRIPT IMPLEMENTATION TRIM()