-
-
Notifications
You must be signed in to change notification settings - Fork 96
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
ITP-JAN-25 | LONDON | Maryna Romanova | Module-Data-Groups | Sprint 2 #451
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The error message says this object is not iterable. Have a look at this page to assist with solution-> https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't there be properties for "serves" and "ingredients" to complete this code? |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
function contains() {} | ||
function contains(obj, property) { | ||
|
||
if (typeof obj !== "object" || obj === null || Array.isArray(obj)) { | ||
return false; | ||
} | ||
|
||
return property in obj; | ||
} | ||
|
||
console.log(contains({ a: 1, b: 2 }, "a")); // true | ||
console.log(contains({ a: 1, b: 2 }, "c")); // false | ||
console.log(contains({}, "a")); // false | ||
console.log(contains(null, "a")); // false | ||
console.log(contains([], "length")); // false | ||
console.log(contains(42, "a")); // false | ||
console.log(contains("string", "length")); // false | ||
|
||
module.exports = contains; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
function createLookup() { | ||
// implementation here | ||
|
||
|
||
function createLookup(array) { | ||
let object = {} | ||
for (const list of array) { | ||
console.log(list); | ||
object[list[0]] = list[1] | ||
} | ||
console.log (object) | ||
return object | ||
|
||
} | ||
|
||
//const countryCurrencyPairs = [['US', 'USD'], ['CA', 'CAD'], ['UA', 'GRN']] | ||
//createLookup(countryCurrencyPairs) | ||
|
||
|
||
module.exports = createLookup; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ test("parses querystring values containing =", () => { | |
"equation": "x=y+1", | ||
}); | ||
}); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
function tally() {} | ||
function tally(items) { | ||
|
||
if (!Array.isArray(items)) { | ||
throw new Error("Input must be an array"); | ||
} | ||
|
||
const counts = {}; | ||
items.forEach(element => { | ||
if (counts[element]) { | ||
counts[element]++; | ||
} else { | ||
counts[element] = 1; | ||
} | ||
}); | ||
return counts; | ||
} | ||
|
||
console.log(tally(['a'])); // { a: 1 } | ||
console.log(tally(['a', 'a', 'a'])); // { a: 3 } | ||
console.log(tally(['a', 'a', 'b', 'c'])); // { a: 2, b: 1, c: 1 } | ||
console.log(tally([])); // {} | ||
|
||
|
||
|
||
module.exports = tally; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,19 @@ function invert(obj) { | |
} | ||
|
||
// a) What is the current return value when invert is called with { a : 1 } | ||
|
||
console.log(invert({ a: 1 })); // Expected: { "1": "a" } | ||
// b) What is the current return value when invert is called with { a: 1, b: 2 } | ||
|
||
console.log(invert({ a: 1, b: 2 })); // Expected: { "1": "a", "2": "b" } | ||
// c) What is the target return value when invert is called with {a : 1, b: 2} | ||
|
||
// c) What does Object.entries return? Why is it needed in this program? | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. c) and d) answers to be expanded |
||
// the same with b) | ||
|
||
// d) Explain why the current return value is different from the target output | ||
|
||
console.log(invert({ x: 10, y: 20 })); // Expected: { "10": "x", "20": "y" } | ||
// e) Fix the implementation of invert (and write tests to prove it's fixed!) | ||
|
||
|
||
console.log(invert({ a: 1 })); // Expected: { "1": "a" } | ||
console.log(invert({ a: 1, b: 2 })); // Expected: { "1": "a", "2": "b" } | ||
console.log(invert({ x: 10, y: 20 })); // Expected: { "10": "x", "20": "y" } | ||
console.log(invert({})); |
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.
House number is not defined in const address. Also investigate the console.log method. Suppose I want to return the city. How would I amend console.log to make sure it prints this out.