Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Javascript, level 2, lesson 3 answer.

I printed the output on the console, also corrected names, still it isn't getting submitted.
I tried everything, yet it's not being submitted.
by

2 Answers

kshitijrana14
Try this one:

var bestApp= 'studytonight';
let _code= 'I love coding';
let num = 007;
let $123 = 100;

console.log(bestApp);
console.log(_code);
console.log(num);
console.log($123);
richard2022
@kshitijrana14 - May I please ask you a question regarding My portfolio project in CSS. I saw in your profile that you have completed this project. I asked this below question from studytonight team however they are not responding for past one week. Thats why I am reaching out here on this forum.

I am currently working on "My Portfolio" project in CSS. I am stuck at Step 2. I am unable to go back to the project Videos to review where I am going wrong. Please send me the link to "My portfolio" project videos.

I think I have done everything right, even then I am getting an error saying use flex property to align items horizontally. this is the code that I have used inside the

<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Courier;
}

nav {
display: flex;
justify-content: flex-start;
padding: 2%;
background-color: #4535AA;
color: white;
}

#nav-options {
margin-left: auto;
}

#nav-options a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #FFB643;
border-radius: 5px;
}
</style>

Please get back to me, I will truly appreciate.

Login / Signup to Answer the Question.