Hi All. Here’s a quick tip when coding in Javascript. Use a function on your variable called toFixed in order to format numbers to a certain decimal place. Example: var mynumber = 10.239; mynumber.toFixed(2) will return 10.24 mynumber.toFixed(0) will return 10 You get the idea Cheers for now.






