const
softwareEngineer = {
name: 'James',
email: 'Jamwhi101@gmail.com',
occupation: 'Software Engineer',
traits: 'loves working with newer frameworks and libraries to create cool desktop and mobile applications.'
skills: 'Javascript, Jquery, Css, Html, React.js, Ruby, Postgresql, Sql, and Ruby on Rails.'
}
const aboutMe = () => { console.log ( `Hi I am ${ softwareEngineer.name} and I am a ${ softwareEngineer.occupation} who ${ softwareEngineer.traits} I have experience in ${ softwareEngineer.skills} Contact me at ${ softwareEngineer.email}.`)
}
aboutMe ()
Hi I am James and I am a Software Engineer who loves working with newer frameworks and libraries to create cool desktop and mobile applications. I have experience in Javascript, Jquery, Css, Html, React.js, Ruby, Postgresql, Sql, and Ruby on Rails. Contact me at Jamwhi101@gmail.com.
|