Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 405 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 405 Bytes

numbertoword.js

Converts numbers to words (german only). Works from zero to octillion (in german Quadrilliarde)

30s look

<!doctype html>
<html>
<head>
	<meta charset="utf-8">
	<!--add reference-->
	<script src="de/numbertoword.js"></script>
	<script>
	  var word = ntw(42); //convert a number to a word
	  console.log("The solution is " + word);
	</script>
</head>
</html>