I Integrations
It's just a randomizer of letters.
function Load() {
let l = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
const out = l.charAt(Math.floor(Math.random() * l.length)) // Randomize !
document.getElementById('random').textContent = out // Get ID 'random' for edit the text context
document.title = out // Edit the title of page
}
Randomize_letter is a simple script with PWA (Manifest and init.js for install SW) and Service Worker.
II Contributions
Contributions are always welcome! Read the rules for contributions before you can participate.
Please ensure that your pull request complies with the following guidelines:
- Alphabetize your entry.
- Look for previous suggestions before making a new one, as yours can be a duplicate.
- The suggested README files should be beautiful or stand out in some way.
- Make…