Which of the following will display "cost is $23.85", assuming cost = 23.9487.
a.
```
document.write("cost is " + Math.floor(cost));
```
b.
```
document.write("cost is " + cost/100;
```
c.
```
document.write("cost is " + cost.toFixed(2);
```
d. either (a) or (c)
c.
```
document.write("cost is " + cost.toFixed(2);
```
Computer Science & Information Technology
You might also like to view...
Information such as your personal interests is added in your Blogger's ________ Information section
A) Additional B) Personal C) My Interests D) My Shared
Computer Science & Information Technology
Your e-mail ____________________ may be required to access the mail server.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology