Giraffe Academy is rebranding! I’ve decided to re-focus the brand of this channel to highlight myself as a developer and teacher! The newly minted Mike Dane channel will have all the same content, with more to come in the future!
Source Code –
This video is one in a series of videos where we’ll be looking at programming in JavaScript. The course is designed for new programmers, and will introduce common programming topics using the JavaScript language.
Throughout the course we’ll be looking at various topics including variables, arrays, getting user input, loops, conditionals, interacting with the DOM and much more.
If you’re enjoying Giraffe Academy and want to invest in our future, consider leaving a contribution
Links:
Website –
Facebook –
Twitter –
Nguồn: https://technewsgator.com
Xem thêm bài viết khác: https://technewsgator.com/game/
var problems= [
{
prompt:"what is your name?n (a)deepan
(b)ritan (c)Gita",
answer:" a"
},
{
prompt:"what is your age?n (a)10n
(b)17n (c)18",
answer: "c"
},
{
prompt:"what is your scool?n (a)univrsaln
(b)venkyn (c)kmc",
answer: "a"
},
];
var score = 0;
for(var i=0;i<problems.length;i++ ){
var response= window.prompt(problems[i].prompt);
if(response==problems[i].answer ){
marks++; alert("right!!");
}
else{ "wrong!!!"};
}
alert("you got"+score+"/"+problems.length);
Can anyone help me with this code this is not working
helo Mike
That's awesome! Thanks for this, Mike!
i could not really understand what window.promp(question[i].prompt) meant?
can someone care to explain?
mike insta id please 🙂
https://youtu.be/NKfb6dQFaZM
i create html page with moving imge ok after how could i add ai.js file to the html same image's up ?
its coming js file up moving imge down how to get same border with all file ?
can you show the html code as well
"What color is a strawberry?"
Mike: red
HTML: WRONG
Can someone explain what the n means?!?
tnx
hey mike i have one question about this
can you set up a timer with it for user to answer their question within that time
Very good tutorial thank you useful for a project I’m working on
Great video thanks! Do you have another video of applying a timer to the quiz??
Why can't i execute it on my browser?
Can I make a timer for this quiz working during answering ?
you have .tort my how to code js
You are just great….
man great job …..very helpful.GOD BLESS yuh
How can I transform from a div in html with question to an array in js but showing it to the user?
What software do you use for your screencast?
Finished your python lessons and am almost done with these ones. Your explanation of concepts is very well organized. Thank you so much.