1.1.0 • Published 6 years ago

parseint-r v1.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

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

  1. 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>
  1. Call the parseint method on your wanted string
Console.log(parseint('four'));    // 4
Console.log(parseint('vier'));    // 4
Console.log(parseint('quatre'));  // 4
Console.log(parseint('四'));       // 4
Console.log(parseint('4'));       // 4

license

Creative Commons Licence

parseint is licensed under a Creative Commons Attribution 4.0 International License. No warranty whatsoever.