April 2007
M T W T F S S
    May »
 1
2345678
9101112131415
16171819202122
23242526272829
30  

How do i enable the notepad's Edit -> Go To…?

how do i enable the notepad’s Edit -> Go To…? it’s winxp btw.
It only works if you turn word wrap off.

How to convert a float, interger value to string?

c) Converting String to Float
To convert a value from string to float, we have to use the function or method “parseFloat() to convert a string value to float.

Example
Result

parseFloat(”4.333″);
4.333

parseFloat(”5aaa”);
5

parseFloat(”6e2″);
600

parseFloat(”aaa”);
NaN (means “Not a Number”)

Example
Result

var a = 3.22;
a.toString();
“3.22″

var a = 5;
a.toString();
5

Example Code:
<script language=”javascript”>
var a = 32;
var b = 333;
var c = a.toString()+b;
document.write(” to String function “+c);
</script>

Result:
var a [...]