Swipe icon indicating copy to clipboard operation
Swipe copied to clipboard

a problem : undefined

Open powy1993 opened this issue 10 years ago • 0 comments

var swipe=(function(me){ var test = 1; var undefined = 1; // compare following situations: me.test1 = (test !== undefined); //false me.test2 = (typeof test !== 'undefine'); // true return me; }(swipe||{}) ); alert(swipe.test1); alert(swipe.test2);

powy1993 avatar Jul 10 '14 02:07 powy1993