Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmalcolm mowlam
3,856 Pointscan anyone help on challenge task 3 javascript basics
converting role to uppercase
firstName="Malcolm"
lastName="Mowlam"
role = 'developer';
var firstame= "Carlos";
var lastName= "Salgado";
var role= "developer";
let msg = firstName + " " +lastName + ": " + role;
const word= "developer";
// the value of 'Shout' is "DEVELOPER"
const shout= "role";. toUpperCase();
2 Answers
A R
12,834 Pointskeep an eye on what's a string and what's a variable.
let role= "developer";
const shout= role.toUpperCase();
Bolivar Arguello
Front End Web Development Techdegree Student 9,429 Pointslet firstName = "Malcolm"; let lastName = "Mowlam"; let role = 'developer'; let msg = firstName + " " +lastName + ": " + role.toUpperCase();
malcolm mowlam
3,856 Pointsthank you Bolivar
malcolm mowlam
3,856 Pointsmalcolm mowlam
3,856 Pointsthank you will have a go