javascriptについて初歩的な質問になるのですが、
Math.floorとMath.randomのようにメソッドを2つ重ねたい時は、
()を使って下記のように記述すればOKということでしょうか?
何かルールなどあるのでしょうか?
const number = Math.floor(Math.random() * 6);
const answer = parseInt(window.prompt('0~5の数字をここに入れてね'));
投稿2021/11/16 01:28
javascriptについて初歩的な質問になるのですが、
Math.floorとMath.randomのようにメソッドを2つ重ねたい時は、
()を使って下記のように記述すればOKということでしょうか?
何かルールなどあるのでしょうか?
const number = Math.floor(Math.random() * 6);
const answer = parseInt(window.prompt('0~5の数字をここに入れてね'));