var
str0 = 2.7976931348623157e+308;
str1 =
'Hello World256'
;
res;
function
funMake() {
document.write(str0 +
'<br />'
);
res = parseInt(str1);
document.write(res +
}
var str0 = 2.7976931348623157e+308; var str1 = 'Hello World256'; var res; function funMake() { document.write(str0 + ''); res = parseInt(str1); document.write(res + ''); }
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();