
1const profile = {
2 name: "Krishnna Devkota",
3 title: "Frontend Developer | UI/UX Designer ",
4
5 skills: [
6 "ReactJS",
7 "Tailwind CSS",
8 "TypeScript",
9 "HTML",
10 "JavaScript",
11 "Git",
12 "VS Code",
13 "UI/UX Design",
14 ],
15
16 traits: {
17 hardWorker: true,
18 quickLearner: true,
19 problemSolver: true,
20 },
21
22 hireable() {
23 return (
24 this.traits.hardWorker &&
25 this.traits.problemSolver &&
26 this.skills.length >= 5
27 );
28 },
29};
30
31// Result
32profile.hireable(); // true 🚀
33



MY PROJECTS