diff --git a/solutions/09a_length/09a.js b/solutions/09a_length/09a.js new file mode 100644 index 0000000..46b9c96 --- /dev/null +++ b/solutions/09a_length/09a.js @@ -0,0 +1,5 @@ + + +var = "This is just a string"; + +console.log(myString.length); \ No newline at end of file diff --git a/solutions/09a_length/index.html b/solutions/09a_length/index.html new file mode 100644 index 0000000..69c142e --- /dev/null +++ b/solutions/09a_length/index.html @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/solutions/HelloName/helloName.html b/solutions/HelloName/helloName.html new file mode 100644 index 0000000..7c13d14 --- /dev/null +++ b/solutions/HelloName/helloName.html @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/solutions/HelloName/helloName.js b/solutions/HelloName/helloName.js new file mode 100644 index 0000000..2919750 --- /dev/null +++ b/solutions/HelloName/helloName.js @@ -0,0 +1,3 @@ +var name = prompt("What's your name?"); +var age = prompt("What's your age?"); +alert("Your name is " + name + "And your age is" + age); \ No newline at end of file diff --git a/solutions/callMonkey/callMonkey.html b/solutions/callMonkey/callMonkey.html new file mode 100644 index 0000000..e69de29 diff --git a/solutions/callMonkey/callMonkey.js b/solutions/callMonkey/callMonkey.js new file mode 100644 index 0000000..e69de29 diff --git a/solutions/hello3ages/hello3ages.js b/solutions/hello3ages/hello3ages.js new file mode 100644 index 0000000..e69de29 diff --git a/solutions/hello3ages/index.html b/solutions/hello3ages/index.html new file mode 100644 index 0000000..e69de29 diff --git a/solutions/helloWorld/helloWorld.html b/solutions/helloWorld/helloWorld.html new file mode 100644 index 0000000..e69de29 diff --git a/solutions/helloWorld/helloWorld.js b/solutions/helloWorld/helloWorld.js new file mode 100644 index 0000000..7df7d57 --- /dev/null +++ b/solutions/helloWorld/helloWorld.js @@ -0,0 +1 @@ +console.log("Hello World"); \ No newline at end of file