We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Partendo da questo array const notesList = [ { title: "Buy milk and bread", createdAt: '2020-04-04', dueDate: null, archived: false, }, { title: "Pick up a package at the post office", createdAt: '2020-04-04', dueDate: null, archived: false, }, { title: "Take a walk with Yoda", createdAt: '2020-04-04', dueDate: null, archived: true, }, { title: "Read 15 minutes", createdAt: '2020-03-07', dueDate: '2020-03-08', archived: false, }, { title: "Do 30 minutes workout", createdAt: '2020-03-01', dueDate: '2020-03-04', archived: false, }, ]
const notesList = [ { title: "Buy milk and bread", createdAt: '2020-04-04', dueDate: null, archived: false, }, { title: "Pick up a package at the post office", createdAt: '2020-04-04', dueDate: null, archived: false, }, { title: "Take a walk with Yoda", createdAt: '2020-04-04', dueDate: null, archived: true, }, { title: "Read 15 minutes", createdAt: '2020-03-07', dueDate: '2020-03-08', archived: false, }, { title: "Do 30 minutes workout", createdAt: '2020-03-01', dueDate: '2020-03-04', archived: false, }, ]
creare un metodo che torni un nuovo array con i soli elementi che hanno la chiave archived uguale a false
The text was updated successfully, but these errors were encountered:
#4 esercizio completato
59aafe9
No branches or pull requests
Partendo da questo array
const notesList = [ { title: "Buy milk and bread", createdAt: '2020-04-04', dueDate: null, archived: false, }, { title: "Pick up a package at the post office", createdAt: '2020-04-04', dueDate: null, archived: false, }, { title: "Take a walk with Yoda", createdAt: '2020-04-04', dueDate: null, archived: true, }, { title: "Read 15 minutes", createdAt: '2020-03-07', dueDate: '2020-03-08', archived: false, }, { title: "Do 30 minutes workout", createdAt: '2020-03-01', dueDate: '2020-03-04', archived: false, }, ]
creare un metodo che torni un nuovo array con i soli elementi che hanno la chiave archived uguale a false
The text was updated successfully, but these errors were encountered: