I am learning to code and I've been working on this one item for over an hour. The code for the string length property is not correct.
// I have tried:
length.length;
num.toString(); //"6"
length.length; //6
//////The exercise is below
function exerciseThree(str){
// In this exercise, you will be given a variable, it will be called: str
// On the next line create a variable called 'length' and using the length property assign the new variable to the length of str
var length = 'length';
length.length;
// Please write your answer in the line above.
return length;