Related changes
← PythJS
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
30 May 2025
N 07:21 | PythJS/Examples diffhist +9,159 MihaiEso talk contribs (Created page with "{{Back|PythJS}} == Examples == === A more complex example, a JavaScript function that converts numbers to words === JavaScript: <pre> function toWords(number, language) { if (language == "English") { // From 1 to 12 and zero! if (number == 0) return("zero"); if (number == 1) return("one"); if (number == 2) return("two"); if (number == 3) return("three"); if (number == 4) return("four"); if (number == 5) return("five"); if (number == 6) r...") |