This repository was archived by the owner on May 14, 2024. It is now read-only.
Closed
Conversation
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
javascript2/week3
//2.1 =======================================
function foo(func) {
func () ;
}
function bar() {
console.log('Hello, I am bar!');
}
foo(bar);
//2.2/ =======================================
function threeFive(startIndex, stopIndex, threeCallback, fiveCallback) {
const numbers = [];
// Replace this comment and the next line with your code
//console.log(startIndex, stopIndex, threeCallback, fiveCallback, numbers);
for (let i = startIndex; i <= stopIndex; i++){
numbers.push(i);
}
console.log(numbers);
for (let i = 0; i < numbers; i++ ){
if (numbers[j] % 3 === 0 && numbers[j] % 5 === 0){
threeCallback(numbers[i]);
fiveCallback(numbers[i]);
} else if (numbers[i] % 3 === 0){
threeCallback(numbers[j]);
} else if(numbers[i] % 5 === 0){
fiveCallback(numbers[j]);
}
}
}
function sayThree(number) {
// Replace this comment and the next line with your code
console.log(number + " is divisible by three");
}
function sayFive(number) {
// Replace this comment and the next line with your code
console.log(number + " is divisible by five");
}
threeFive(10, 15, sayThree, sayFive);
// Do not change or remove anything below this line
module.exports = threeFive;
//2.3 ==============================
// While loop
function repeatStringNumTimes(str, num) {
let accumulatedStr = '';
while (num > 0) {
accumulatedStr += str;
num--;
}
return accumulatedStr;
}
// for loop
repeatStringNumTimes("abc", 3);
function repeatStringNumTimes(str, num) {
let accumulatedStr = '';
for (i = 0; i < 5; i++) { accumulatedStr += str;
num--;
}
return accumulatedStr;
}
repeatStringNumTimes("abc", 3);
// Do while loop
function repeatStringNumTimes(str, num) {
let accumulatedStr = '';
do {
accumulatedStr += str;
num --;
}
while (num > 0);
return accumulatedStr;
}
console.log( repeatStringNumTimes('abc', 3));
//2.4 ==============================
function Dog() {
this.name = "George",
this.color = "White",
this.numLegs = 4;
}
function Dog() {
this.name = "George",
this.color = "White",
this.numLegs = 4;
}
let hound = new Dog();
//2.5 ==================================
function multiplyAll(arr) {
var product = 1;
// Only change code below this line
for(let i=0; i < arr.length; i++){
for (let j=0; j < arr[i].length; j++){
product = product * arr[i][j];
}
}
// Only change code above this line
return product;
}
// Modify values below to test your code
multiplyAll([[100,200],[300,400],[500,600,700]]);
// 2.6==================================
/*if it is a 2D Array we check each index. since it is going to contain arrays too we need to check if an index is an array.
we should store the resulting indeces into a result array to return.
Knowing the given array will only be a 2D array, we search each index
for an array, and each index that is an array, search again transfering
all data to the return array.
*/
//2.7 ====================================
// value of x in the first function is 9 because x is called outside the function
const x = 9;
function f1(val) {
val = val + 1;
return val;
}
f1(x);
console.log(x);
/When a parameter is passed by reference, the caller and the callee use the same variable for the parameter.
If the callee modifies the parameter variable, the effect is visible to the caller's variable. if you pass by by reference the change reflects outside./
const y = { x: 9 };
function f2(val) {
val.x = val.x + 1;
return val;
}
f2(y);
console.log(y);
10
/but if you pass by value it makes a copy and pass it so the change will not be reflected outside. in other words When a parameter is passed by value,
the caller and callee have two independent variables with the same value and if the callee modifies the parameter variable, the effect is not visible to the caller./
//3,==================================
let addSix = createBase(6);
function createBase(num){
return function addSix(added){
return num + added
}
}
addSix(10); // returns 16
// Bonus=====================
const letters = ['a', 'b', 'c', 'd', 'a', 'e', 'f', 'c'];
let unique = [...new Set(letters)];
console.log(unique);
// returns ['a', 'b', 'c', 'd', 'e', 'f',]