Skip to content
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

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

marcorensch
Copy link

aufgabe 4 in einigen zügen schon auf dem weg zur aufgabe 5

console.log(sum(zahlen))

// Imperativ
let summe = zahlen.reduce((sum, val) =>sum + val)
Copy link
Contributor

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) {
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants