Skip to content

Commit 7ea6e34

Browse files
committed
Stopping it erroring for no reason
1 parent bca054f commit 7ea6e34

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Javascript.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ document.write(array_colours[2]);
9797
var myLoop = "I only want to type this once"; //define your first variable
9898
//For Loop
9999
var i; //create the variable
100-
for (int i=0; i<10; i++){ //for loop
100+
/*for (int i=0; i<10; i++){ //for loop
101101
document.write(myLoop); //task to do
102-
}
102+
}*/
103103
//Do While Loop
104104
var i = 1;
105105
do {

Svelte.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<!--Svelte is used to build user interfaces for Web Apps. It transforms "Framework code" into "Framework-less" JavaScript. Svelte has its own compiler, converting app code into client-side Java script at compile time. It is usually interpreted at run time.
33
Svelte apps are built of single-file components using .html. The application requires no dependencies to start as it compiles to vanilla JavaScript at the building stage. It's architected to be faster than a library.-->
44

5-
<<!--Installation of Svelte-->
6-
<<!--Install:
5+
<!--Installation of Svelte-->
6+
<!--Install:
77
- Node.js - a runtime environment needed to execute a JavaScript Program.
88
- NPM (Node Package Manager) - an application and repo for developing and sharing JavaScript code.
99
- Svelte Project Template.-->

0 commit comments

Comments
 (0)