// This is a single line comment in JavaScript
// This is another single line comment
// with multiple lines
// of comments
/* This is a multi-line comment
that spans multiple lines
and should be removed */functionexample(){// This is a comment inside a function
console.log("Hello, world!");/* This is another multi-line comment
inside the function */}// This is a comment after the function