24 Kasım 2019 Pazar

parseInt Global metodu

Giriş
Açıklaması şöyle.
The value to parse. If the string argument is not a string, then it is converted to a string (using the ToString abstract operation).
Radix Parametresi
Açıklaması şöyle.
If the radix parameter is omitted, JavaScript assumes the following:

If the string begins with "0x", the radix is 16 (hexadecimal)
If the string begins with "0", the radix is 8 (octal). This feature is deprecated
If the string begins with any other value, the radix is 10 (decimal)
Diğer
Bu metod yerine Number sınıfı kullanılabilir. Şöyle yaparız.
Number("999");
Global Metodlar
Global metodların listesi şöyle.
eval()
uneval()
isFinite()
isNaN()
parseFloat()
parseInt()
decodeURI()
decodeURIComponent()
encodeURI()
encodeURIComponent()
escape()
unescape()
Örnek
Şöyle yaparız
console.log(parseInt("021", 8))
Örnek
Şöyle yaparız. window.prompt ile kullanıcıya bir kutucuk gösterilir.
var num1 = parseInt(prompt("Enter 1st number"))
var num2 = parseInt(prompt("Enter 2nd number"))

Hiç yorum yok:

Yorum Gönder