+ 7
What is meant by parseInt in js
please explain
5 Réponses
+ 5
Hi! You can find information about this in:
https://www.w3schools.com/jsref/jsref_parseint.asp
+ 4
thanx Nimrod A. Holguín L. and deepak sharma
+ 4
You're welcome Arpit Mittal! 👍
+ 4
Arpit Mittal
You need to give the checkmark to someone still.
+ 3
Definition and Usage. The parseInt() function parses a string and returns an integer. The radix parameter is used to specify which numeral system to be used, for example, a radix of 16 (hexadecimal) indicates that the number in the string should be parsed from a hexadecimal number to a decimal number.
https://www.w3schools.com/jsref/jsref_parseint.asp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt
https://www.bitdegree.org/learn/javascript-parseint/
https://www.geeksforgeeks.org/javascript-parseint-with-examples/