✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class MathUtils {static square(x) {
return x \* x;
}
}
console.log(MathUtils.square(4));
const m = new MathUtils();
console.log(m.square(4));