Ankur Chaulagain

Learning to Code with FreeCodeCamp

๐Ÿ‘‹ About Me

I'm Ankur, a passionate self-taught coder diving into the world of web development through FreeCodeCamp. I'm building projects, solving problems, and loving every minute of it!

๐Ÿ“˜ What Iโ€™m Learning

๐Ÿ’ป Sample Code

Here's a simple snippet I wrote recently:

// Greet function
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('Ankur'));