saadbaigg / Javascript-Fundamentals

Practicing fundamentals of javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

// ========================================================= // // This technique will give us a whole number between 0 and 19.// // Math.floor(Math.random() * 20); // // ========================================================= //

// ========================================================= // // we can generate a random number that falls within a range of two specific numbers. // // Here's the formula // // Math.floor(Math.random() * (max - min + 1)) + min // // ========================================================= //

// ========================================================= //

About

Practicing fundamentals of javascript


Languages

Language:JavaScript 82.4%Language:HTML 13.8%Language:CSS 3.8%