test
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
let counter = 0;
|
||||
let step = 4;
|
||||
do{
|
||||
counter = counter + step;
|
||||
console.log(counter);
|
||||
} while(counter < 100)
|
||||
@@ -1,9 +0,0 @@
|
||||
let myWork = [];
|
||||
|
||||
for (let i = 1; i <= 10; i++) {
|
||||
let status = i % 2 === 0 ? true : false;
|
||||
let lesson = { name: 'Lesson ' + i, status: status};
|
||||
myWork.push(lesson);
|
||||
}
|
||||
|
||||
console.log(myWork);
|
||||
@@ -1,7 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head> <title>This goes in the tab of your browser</title></head>
|
||||
<body>
|
||||
<script type="text/javascript" src="5,2.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user