-
Notifications
You must be signed in to change notification settings - Fork 2.3k
initial commit #543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Abott1222
wants to merge
9
commits into
bloominstituteoftechnology:master
Choose a base branch
from
Abott1222:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
initial commit #543
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ae46db5
initial commit
Abott1222 306e976
finished callbacks
Abott1222 02a0b6e
finished array methods
Abott1222 e371a56
added external reducer
Abott1222 db6af5e
finished array methods
Abott1222 fe2b53f
finished callbacks
Abott1222 83a068c
added stretch for callbacks
Abott1222 6e5bf9e
added arrow functions and IIFE to stretch.js file
Abott1222 0555a79
updated assignment
Abott1222 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,60 @@ | ||
| // ==== Challenge 1: Write your own closure ==== | ||
| // Write a simple closure of your own creation. Keep it simple! | ||
| function simpleEx(exampleString) { | ||
| const holdingStringForClosure = exampleString; | ||
|
|
||
| function closureOverExample() { | ||
| console.log(`I have access to ${holdingStringForClosure}`); | ||
| } | ||
|
|
||
| closureOverExample(); | ||
| }; | ||
|
|
||
| simpleEx("hello"); | ||
|
|
||
| // ==== Challenge 2: Create a counter function ==== | ||
| const counter = () => { | ||
| // Return a function that when invoked increments and returns a counter variable. | ||
| let value = 0; | ||
|
|
||
| return function() { | ||
| console.log(value++); | ||
| } | ||
| }; | ||
| // Example usage: const newCounter = counter(); | ||
| // newCounter(); // 1 | ||
| // newCounter(); // 2 | ||
| const newCounter = counter(); | ||
| newCounter(); | ||
| newCounter(); | ||
|
|
||
| /* STRETCH PROBLEM, Do not attempt until you have completed all previous tasks for today's project files */ | ||
|
|
||
| // ==== Challenge 3: Create a counter function with an object that can increment and decrement ==== | ||
| const counterFactory = () => { | ||
|
|
||
| let value = 0; | ||
|
|
||
| // Return an object that has two methods called `increment` and `decrement`. | ||
| // `increment` should increment a counter variable in closure scope and return it. | ||
| // `decrement` should decrement the counter variable and return it. | ||
|
|
||
| return { | ||
| increment: function(){ | ||
| console.log(value++); | ||
| }, | ||
| decrement: function(){ | ||
| console.log(value--); | ||
| } | ||
| } | ||
| }; | ||
|
|
||
| console.log("\n From counter2: \n"); | ||
| const newCounter2 = counterFactory(); | ||
| for(let i = 0; i < 20; i++) { | ||
| if(i%3 ===0) { | ||
| newCounter2.decrement(); | ||
| } else { | ||
| newCounter2.increment(); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,48 @@ | ||
| 'use strict'; | ||
| // Take the commented ES5 syntax and convert it to ES6 arrow Syntax | ||
|
|
||
| // let myFunction = function () {}; | ||
| const myFunction = () => {}; | ||
|
|
||
| // let anotherFunction = function (param) { | ||
| // return param; | ||
| // }; | ||
|
|
||
| const anotherFunction = (param) => param; | ||
|
|
||
| // let add = function (param1, param2) { | ||
| // return param1 + param2; | ||
| // }; | ||
| // add(1,2); | ||
|
|
||
| const add = (param1, param2) => param1+param2; | ||
| console.log(add(1,2)); | ||
|
|
||
| // let subtract = function (param1, param2) { | ||
| // return param1 - param2; | ||
| // }; | ||
| // subtract(1,2); | ||
|
|
||
| // exampleArray = [1,2,3,4]; | ||
| const subtract = (param1, param2) => param1 - param2 | ||
| console.log(subtract(1,2)); | ||
|
|
||
| const exampleArray = [1,2,3,4]; | ||
| // const triple = exampleArray.map(function (num) { | ||
| // return num * 3; | ||
| // }); | ||
| // console.log(triple); | ||
| // console.log(triple); | ||
|
|
||
| const triple = exampleArray.map( (num) => num*3 ); | ||
|
|
||
|
|
||
| /*IIFE closure */ | ||
| for(var i =0; i<5; i++) { | ||
| (function() { | ||
| var savingI = i; | ||
|
|
||
| //timer callback executes after loop | ||
| setTimeout( function() { | ||
| console.log(`number from timer callback ${savingI}`); | ||
| }, 1000); | ||
| })(); | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great