1let data = {
2 name:"Brendan Eich",
3 inventor :"Javascrpt"
4}
5console.log(`The name of his is ${data.name}. He is the inventor of ${data.inventor} programming language`);
1let data = {
2 name:"Brendan Eich",
3 inventor :"Javascrpt"
4}
5console.log(`The name of his is ${data.name}. He is the inventor of ${inventor} programming language`);
1html>
2<head>
3 <title>Multiplication Table</title>
4 <script type="text/javascript">
5 var rows = prompt("How many rows for your multiplication table?");
6 var cols = prompt("How many columns for your multiplication table?");
7 if(rows == "" || rows == null)
8 rows = 10;
9 if(cols== "" || cols== null)
10 cols = 10;
11 createTable(rows, cols);
12 function createTable(rows, cols)
13 {
14 var j=1;
15 var output = "<table border='1' width='500' cellspacing='0'cellpadding='5'>";
16 for(i=1;i<=rows;i++)
17 {
18 output = output + "<tr>";
19 while(j<=cols)
20 {
21 output = output + "<td>" + i*j + "</td>";
22 j = j+1;
1function getIntoAnArgument() {
2 var args = arguments.slice();
3 args.forEach(function(arg) {
4 console.log(arg);
5 });
6}