1.1.0 • Published 8 years ago
parseint-r v1.1.0
parseint
Let's say you've got a word or a string that, and you need to parse it to an integer. What function would you use?
If your answer was parseInt(that), then you're totally wrong and should be ashamed of yourself. The only correct method is this one.
This will work even on strings in languages not english!
implementation
- download the script and load it before the end of your
<body>
<script src="parseint.js"></script>
<script src="main.js"></script> <!-- your own main script -->
</body>- Call the
parseintmethod on your wantedstring
Console.log(parseint('four')); // 4
Console.log(parseint('vier')); // 4
Console.log(parseint('quatre')); // 4
Console.log(parseint('四')); // 4
Console.log(parseint('4')); // 4license
parseint is licensed under a Creative Commons Attribution 4.0 International License. No warranty whatsoever.
1.1.0
8 years ago
