DEV Community

Discussion on: Welcome Thread - v37

Collapse
 
thegreatsevrini profile image
Sevrinn Welker

Hey all! I’m teaching myself to code so I can level up my life. Excited to be here! I’ve got html and css under my belt and am excited to really dive into JavaScript

Collapse
 
andrewbrown profile image
Andrew Brown 🇨🇦
function welcome(name){
  return `Welcome to ${name} Dev.to!`
}

console.log(welcome('Sevrinn'))