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 trial

JavaScript JavaScript Basics Working with Strings Combine and Manipulate Strings

sanket pureddiwar
sanket pureddiwar
3,832 Points

how to fix cannot read property '1' of null?

I am not able to get the output

app.js
let firstName = "Sanket";
let lastName = "Reddy";
let role = 'developer';

let msg =  firstName + " " +  lastName + ":" + role + ".";
role = role.toUpperCase();
let msg = firstName + " " + lastName + ":" + role + ".";

2 Answers

Dimitar Dimitrov
Dimitar Dimitrov
11,800 Points

You don't need to reassign the role variable and you have declared msg twice which is kinda wrong. Just use toUpperCase() in the string concatenation like this :

let firstName = "Sanket";
let lastName = "Reddy";
let role = 'developer';

let msg =  firstName + " " + lastName + ": " + role.toUpperCase();
sanket pureddiwar
sanket pureddiwar
3,832 Points

cool thanks for the answer will use it