Skip to content
View souravkl11's full-sized avatar
Block or Report

Block or report souravkl11

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
souravkl11/README.md

Hey there!

function Character(name, age, hobby) {
  this.name = name;
  this.age = age;
  this.hobby = hobby;
}

Character.prototype.bio = function() {
  return `Hi there, I'm ${this.name}, a ${this.age}-year-old who loves working with ${this.hobby}!`;
}

Character.prototype.interests = ['programming', 'workout', 'hanging out with friends'];

const sourav = new Character('Sourav', 16, 'Node.js');
console.log(sourav.bio());
console.log(`My interests include: ${sourav.interests.join(', ')}.`);

Pinned

  1. raganork-md raganork-md Public

    Multi-functional WhatsApp bot project

    JavaScript 783 6.6k

  2. Raganork-legacy Raganork-legacy Public

    Simple Whatsapp bot :)

    JavaScript 129 787