algoritmos de js y estructuras de datos
Holla!
Olvidaste declarar studlyCapVar y asignarle el valor 10.
,me sigue arrojando el mismo error alguna otra soluciĂłn ?
Please post actual code instead of pictures. Thank you
// Variable declarationsvar
stuplyCapVar;
var properCamelCase;
var titleCaseOver;
// Variable assignments
stuplyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;
asĂ esta compuesto amigo no puedo crear alguna variable ademas de esas vi el vĂdeo de la clase y en el vĂdeo no se asigna ningĂşn valor solo las correcciones en camelcase
You changed which variables are declared. You need to have the same variables, but with camel case capitalization.
You edited the code.
Now you are missing the var
and the variable name has a typo stuplyCapVar
you are asked to use studlyCapVar
as the name.
Use the “preformatted text” tool in the editor (</>
) to add backticks around the code.
problema resuelto,gracias por su colaboraciĂłn
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.