Posted By

kcmr on 04/16/09


Tagged

javascript


Versions (?)

Who likes this?

4 people have marked this snippet as a favorite

Vordreller
wizard04
sekihin
inkdeep


isInteger Javascript


 / Published in: JavaScript
 

URL: http://www.ultrashock.com/forums/oop/extending-the-number-prototype-is-integer-6499.html

  1. function isInteger(value){
  2. return ( !(value % 1) );
  3. }

Report this snippet  

You need to login to post a comment.