Jump to content
  • 0

Возврат объекта


Ktulich
 Share

Question

Доброго времени суток. Прохожу курс Б. Стащука и на самостоятельное изучение было дано задание: 
В следующем коде преобразовать в стрелочной функции неявный возврат объекта в "явный" (как я понимаю, используя return)

Читал про стрелочные функции, но так и не разобрался. 

Так как все-таки это сделать?

 

const newPost = (post, addedAt = Date()) => ({
    ...post,
    addedAt,
})

const firstPost = {
    id: 1,
    author: 'Nick',
}

console.log(newPost(firstPost))
 
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
02.04.2022 в 19:18, Energy сказал:
const newPost = (post, addedAt = Date()) => {
    const myPost = {
    ...post,
    addedAt,
  }
    return myPost
}

const firstPost = {
    id: 1,
    author: 'Nick',
}

console.log(newPost(firstPost))

 

let c

const newPost = (post, addedAt = Date()) => c = {
    ...post,
    addedAt,
}

const firstPost = {
    id: 1,
    author: 'Serg',
}

console.log(newPost(firstPost))
 

Если не сложно, можешь объяснить почему у меня всё работает, хотя я не использовал return и является ли правильной такая запись кода?

Link to comment
Share on other sites

  • 0
30.04.2022 в 19:44, Серго сказал:

let c

const newPost = (post, addedAt = Date()) => c = {
    ...post,
    addedAt,
}

const firstPost = {
    id: 1,
    author: 'Serg',
}

console.log(newPost(firstPost))
 

Если не сложно, можешь объяснить почему у меня всё работает, хотя я не использовал return и является ли правильной такая запись кода?

Ты в стрелочной функции из-за того что у тебя одно выражение опустил { }. А это ведет к неявному возврату результата выражения.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy