MCQOPTIONS
Saved Bookmarks
| 1. |
What happens in the following javascript code snippet?var num = 1;while (num < 15) { console.log(num); num++;} |
| A. | An exception is thrown |
| B. | An error is displayed |
| C. | The values of count are logged or stored in a particular location or storage |
| D. | The value of count from 1 to 14 is displayed in the console |
| E. | None of these |
| Answer» E. None of these | |