porque no anda el c

Tell us what’s happening:

Your code so far


// Only change code below this line
var a;
var b;
var c;
// Only change code above this line

a = a + 1;
b = b + 5;
c = c + " String!";

var c = "I am a";
var a = 6;
var b = 15;



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36.

Challenge: Understanding Uninitialized Variables

Link to the challenge:

You should not add these lines. You need to modify the existing lines to initialize a, b, and c to these values.

No entiendo, porque dice el comentario que no se debe editar esos codigoos preexistentes

You have it the other was around. You’re only allowed to change the code in between these two comments. You can’t change code below this section (where you put your initialization values)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.