InterviewSolution
Saved Bookmarks
| 1. |
What is parseInt() and why it is used? |
|
Answer» ParseInt() is a method in Java that is USED to convert the numbers REPRESENTED as a STRING. These numbers are an integer type, and through this method, the string gets CONVERTED to an integer. parseInt(string, radix) |
|