JavaScript Console Log Tutorial Chrome Firefox IE Browsers

preview_player
Показать описание

var mystring = "hello world";

Google Chrome - Ctrl + Shift + J
Firefox - Ctrl + Shift + K
IE - F12 Key then click the console button
Рекомендации по теме
Комментарии
Автор

Awesome! I'm doing Learn Python The Hard Way, and I figured I'd try to mirror the LPTHW exercises in JavaScript and learn both languages. This helps immensely!

PocketBeemRocket
Автор

Thanks very much for this, please keep posting videos on javascript very helpful thanks ian.

IanMcCully
Автор

Hey Adam have you made a work space gui? where you can make notes, keep email addresses, send a note to groups of email lists, read a newsfeed, run a few apps? you know you click minimize and it all goes away.

shakaama
Автор

console.log("Could you show us how to do debugging in Firefox, please?");

NoahNobody
Автор

Hey Adam.
I'm on ubuntu 16 with firefox and firebug.
Try to do da same magic as you did, but nothing happens.
Open my firebug console and nothing there.
The js file content is the same like you have.
Any hint ?

tp
Автор

Hi Adam can u help me to create a login page in JavaScript using front end as Dream Weaver CS5.5. or Net-beans(any version) but the back end should be MySQL only pls rply i need it to do my project.

Sharu
Автор

the tutorial doe not explain what application is being used that offers the menu item File > Preview in Browser

DennisAllard
Автор

How to bypass /?a=withdraw&say=daily_limit :/ help i m stuck

JemYAderson
Автор

hello adam, can you learn us how to make a notifications bar ! like the facebook.. 
thanks in advance.

iSuperDuper
Автор

what's the keyboard shortcut to CLOSE the console on firefox? Thanks.

altcoelho
Автор

i cannot able to run a code...the console is not working.. can anyone help me out


<html lang = en>
<head>
<meta charset = "utf-8">
<title> My First JavaScript</title>
</head>

<body>
<script type="text/javascript">
var word = "bottles";
var count = 99;
while (count > 0)
{
console.log(count + " " + word " of beer on the wall");
console.log(count + " " + word " of beer");
console.log("Take one down, pass it around, ");
count = count -1;
if (count > 0)
{
console.log(count + " " + word + "of beer on the wall.");
}

else
{
console.log("No more " + word + "of beer on the wall.");
}
}

</script>

</body>
</html>

ZakirHossainZacque