Here is the Solution of how to print array element in HTML table. HTML Code: <p id=”demo”></p> JavaScript Code: var fruits, text, fLen, i; fruits = [“Banana”, “Orange”, “Apple”, “Mango”]; fLen = fruits.length; text = “<table border=’1′><tr><th>Index</th><th>Data</th></tr>”; for (i =
Month: July 2017
Oracle Database: Lecture – 01
Simple Exam Grading System

This is very simple grading system based on single subject marks. var mark=60 if(mark>60) { document.write(“pass”); } else{ document.write(“Fail”) } */ var mark=prompt(“Enter Mark”); if(mark>100) { document.write(“Invalid”); } else if(mark>90) { document.write(“A”); } else if(mark>80) { document.write(“B”); } else if(mark>70)