Tuesday, February 13, 2018

Read Me: If you bought MindTap acces code from the book store.

If you purchased the Cengage Mind Tap access key please follow these instructions to access the course and eBook.
1)  The Ceengage Site

2) Go here to access the course.
Create a student Cengage account (use your smartweb.edu email).
You will need the access key that you purchaed and this Course Key: MTPP-CTQP-BDBQ

Monday, February 5, 2018

var nums = [6, 88, 0, -1, 34];

var text = "";
var largest=-999;
for (var i=0; i < nums.length; i++) {
    
    if(nums[i]>largest)
     largest=nums[i]
}

alert(largest + "is the largest number in the array");