Converts numbers to words (german only). Works from zero to octillion (in german Quadrilliarde)
<!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>