-
Notifications
You must be signed in to change notification settings - Fork 13
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
hauptsächlich obj vs json bis u mit aufgabe 4 #10
base: master
Are you sure you want to change the base?
Conversation
console.log(sum(zahlen)) | ||
|
||
// Imperativ | ||
let summe = zahlen.reduce((sum, val) =>sum + val) |
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.
mit imperativ ist gemeint: keine funktionalen konzepte verwenden. sprich: mit for schleife arbeiten.
// das Array sortieren (mit check ob sortBy im obj existiert) | ||
if(sortBy !== null) { | ||
arr.sort((a, b) => { | ||
if (sortBy in a && sortBy in b) { |
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.
Hinweis: der in Operator berücksichtigt nicht ob das "sortBy" property enumerable ist oder nicht. Schöner wäre es hier Object.keys(a).includes(sortBy) zu verwenden.
aufgabe 4 in einigen zügen schon auf dem weg zur aufgabe 5