Why does the SpeechSynthesisUtterance.volume property return "0.4000000059604645" when set to ".4"?
var u = new SpeechSynthesisUtterance();
u.volume = .4;
console.log(u.volume);
var u = new SpeechSynthesisUtterance();
u.volume = .4;
console.log(u.volume);