Compare commits

...

6 Commits

Author SHA1 Message Date
jason.zhu a3c7a49770 Module2: Demo add 2 numbers 2021-05-12 12:11:47 +10:00
jason.zhu c38c66a446 Module1: How Closures Work 2021-05-12 11:45:47 +10:00
jason.zhu c11b998681 Module 1: Understanding Block Scope 2021-05-12 11:41:40 +10:00
jason.zhu cfc610bf1a Module 1: Understanding Function Scope 2021-05-12 11:39:16 +10:00
jason.zhu bd562c63a2 Module 1: Introducing Functions 2021-05-12 11:36:07 +10:00
jason.zhu 4f0a3819c4 Modified README.md 2021-05-12 11:35:16 +10:00
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,3 @@
# README
This is a practice repo following [JavaScript: Functions](https://app.pluralsight.com/course-player?clipId=bdda4158-f634-4866-ac1a-f536f948c3e1)

5
app.js
View File

@ -1 +1,4 @@
console.log("hello");
let sum2 = (num1, num2) => num1 + num2;
let output = sum2(10,5);
console.log(output);