diff --git a/05-more-on-vars-funcs/README.md b/05-more-on-vars-funcs/README.md index 57feaa5..d062252 100644 --- a/05-more-on-vars-funcs/README.md +++ b/05-more-on-vars-funcs/README.md @@ -119,4 +119,4 @@ addTwoNumbers(num1, num2); // this will result in 8 being printed to the console One thing we notice here is that our variables themselves are not called number1 and number2! In fact, they can be called anything they want! In this example, the real variable names were `num1` and `num2`, but JavaScript knows that in our function body when we type `number1` that we just mean the first argument passed to the function. -We now know types of variables in JavaScript and the operations we can do on them, as well as how to write functions in JavaScript with multiple function arguments! We are seriously making progress in having the skills to develop a well-functioning web application! +We now know types of variables in JavaScript and the operations we can do on them, as well as how to write functions in JavaScript with multiple function arguments! We are seriously making progress in having the skills to develop a well-functioning web application! \ No newline at end of file diff --git a/05-more-on-vars-funcs/example.html b/05-more-on-vars-funcs/example.html new file mode 100644 index 0000000..36ecb1a --- /dev/null +++ b/05-more-on-vars-funcs/example.html @@ -0,0 +1,32 @@ + + + + + + repl.it + + + + + +

Adder

+ +

+ +

+

+ + + + \ No newline at end of file