Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
小数点以下第2位0を取得するにはどうすればよいですか?
例えば:
15.296326 => 15.30 15.245152 => 15.20
試しましたが、期待toFixed()しMath.Floorた答えが得られませんでした。
toFixed()
Math.Floor
function roundFloat(n) { return (Math.round(n * 10) / 10).toFixed(2); } roundFloat(15.296326); // "15.30" roundFloat(15.245152); // "15.20"