More JavaScript
...More Snippets from follow along with Netninja
//Now to numbers:
let radius = 10;
const pie = 3.14;
console.log(radius, pie);
//math operators +, -, *, /, **, %
console.log(10/2);
let resultR = radius % 3; //takes a numer, divide by 3 and gives u...
rashida.hashnode.dev1 min read