You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{omitProperty}from'@ducto/modifiers';constmovies=[{title: 'The Shawshank Redemption',year: 1994},{title: 'The Godfather',year: 1972},];constnewMovies=movies.map(movie=>(movie|>omitProperty('title')(#)));
Example Without Pipeline Operator
import{omitProperty}from'@ducto/modifiers';constmovies=[{title: 'The Shawshank Redemption',year: 1994},{title: 'The Godfather',year: 1972},];constnewMovies=movies.map(omitProperty('title',),);