or at least walk me through problems? I'm currently taking a college class right now, basically intro to computer science, but i'm still struggling, struggling in that I have difficulty combiining concepts and also remembering them.I notice I often have to look back to previous stuff. ANyhow my class has weekly assignments that are due at the end of each week, and lately I've had a harder time understanding things.
Currently in javascripting it's been while/for looping, functions and what not.
we also use code academy, but i've stumbled arcoss a problem that I don't know how to solve, which is rare on code academy for me.
Write a while loop that logs "I'm looping!" to the console three times. You can do this however you like, but NOT with three console.log calls. Check the Hint if you need help!
this is what I have so far
//Remember to make your condition true outside the loop!
var loop = true;
var loop = function(round){
while(loop < 3){
console.log("i'm looping");
loop = false;
}
};
round(9);
I use w3schools.com as well for a resource but the definitions only help to an extent, they don't provide enough broad examples for me :\


Welcome to BleepingComputer, a free community where people like yourself come together to discuss and learn how to use their computers. Using the site is easy and fun. As a guest, you can browse and view the various discussions in the forums, but can not create a new topic or reply to an existing one unless you are logged in. Other benefits of registering an account are subscribing to topics and forums, creating a blog, and having no ads shown anywhere on the site.
Back to top








