Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.15 KB

README.md

File metadata and controls

37 lines (31 loc) · 1.15 KB

reSpell.js

JavaScript library that spells provided numbers using JavaScript

Main code is on reSpell.js

Because of JavaScript's floating point, numbers are passed as strings (there is also a lazy basic conversion but not for number 15+ digits long)

  • Current limit is 66 digits (deciamls and digits) (hundred vigintillion/ths)

For this to work on your own HTML do the following:

  • Link this script: (downloaded locally or from GitHub)
<script src="reSpell.js"></script>
<script src="https://mikl-ls.github.io/reSpell.js/reSpell.js"></script>
  • Make a function that calls the reSpell() function

example HTML:

<p id="output"> Output for JS is here </p>
<input id="input" type="number">
<button onclick="spell()"> spell </button> 

example JavaScript to trigger reSpell():

<script src="https://mikl-ls.github.io/reSpell.js/reSpell.js"></script>
<script>
function spell() {
 n = document.getElementById("input").value; // gets value from an input tag with the id 'input' 	
 document.getElementById("output").innerHTML = reSpell(n);
}
</script>

A demo/preview is available at https://mikl-ls.github.io/reSpell.js