Instead of 1.toString () we can use (1).toString().It will work fine by the java script perser.
C
camycentsolutions
@camycentsolutions
Posts
-
'undefined' is a flaw in JavaScript -
Passing an "array" in CUnfortunately in C language there has not any concept of bounds checking.If we are inserting an array elements which exceeds size of an array automatically it is treated as garbage value. Example: #include #include main() { int a[10]; a[3]=4; a[11]=3;//does not give segmentation fault a[25]=4;//does not give segmentation fault a[20000]=3; //gives segmentation fault getch(); }