DEV Community

Mehul Lakhanpal
Mehul Lakhanpal

Posted on • Originally published at codedrops.tech

Implement custom '.pick()' for objects

const pick = (obj = {}, keys = []) => {
  const result = {};

  for (const key in obj) {
    if (keys.includes(key)) {
      result[key] = obj[key];
    }
  }
  return result;
};

const obj = {
  name: "Mehul",
  age: 27,
  email: "codedrops.tech@gmail.com",
  website: "codedrops.tech",
};

const keysToInclude = ["name", "age"];

console.log(pick(obj, keysToInclude)); // { name: 'Mehul', age: 27 }
Enter fullscreen mode Exit fullscreen mode

Thanks for reading 💙

Follow @codedrops.tech for more.

InstagramTwitterFacebook

Micro-Learning ● Web Development ● Javascript ● MERN stack

codedrops.tech


Projects

File Ops - A VS Code extension to easily tag/alias files & quick switch between files

Top comments (0)