Tag: web technology
Questions Related to web technology
Characteristics of the Web Services programming model.
Where is the correct place to insert a JavaScript in HTML Page?
How do you create a function?
How do you round the number 10.75, to the nearest integer?
How can you find a client's browser name?
var d=new Date(); theDay=d.getDay(); switch (theDay) { case 2: document.write("Today is Saturday"); break; case 4: document.write("Finally Friday"); break; case 5: document.write("Super Saturday"); break; case 6: document.write("Sleepy Sunday"); default: document.write("I'm looking forward to this weekend!"); } If today is Saturday, what will be out of the above snippet
What is the correct way to write a JavaScript array?