topical media & game development

talk show tell print

#javascript-code-08-constructor.js / js



  // Check to see if our number is actually a string
  if ( num.constructor == String )
      // If it is, then parse a number out of it
      num = parseInt( num );
  
  // Check to see if our string is actually an array
  if ( str.constructor == Array )
      // If that's the case, make a string by joining the array using commas
      str = str.join(',');
  
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.