Status
Completed
Short Description
Generate a random bit.ly url, let the internet surprise you!
Tags
vuebitly
Website
Last Updated
December 23, 2017
Category
Project
Hidden
Featured
bit.ly roulette
Take a leap. Visit a random bit.ly url.
How it Works
Hackity hack hacks. Get four random characters, add it to the bit.ly domain, and hope that itβs a real site.
getBitly() {
const numChars = 4;
let bitlyUrl = 'bit.ly/';
for (let i = 0; i < numChars; i += 1) {
bitlyUrl += this.getRandomChar();
}
return bitlyUrl;
},