JSFiddle - React, Tailwind, and code Playground
by Prathameshsb
JavaScript
const x = 2;
let y = 4;
function update(arg) {
return Math.random() + y * arg;
}
y = 2; ? ;
const result = update(x);
by Prathameshsb
const x = 2;
let y = 4;
function update(arg) {
return Math.random() + y * arg;
}
y = 2; ? ;
const result = update(x);