Rittik Chauhan

I am |

const coder = {
  name: 'Rittik Chauhan',
  skills: ['MERN', 'NEXTJS , 'WORDPRESS'],
  hardWorker: true,
  quickLearner: true,
  problemSolver: true,
  hireable: function() {
    return (
      this.hardWorker &&
      this.problemSolver &&
      this.skills.length >= 5;
    );
  }
};