Chrome Dev Tools Console Super Powers

  Рет қаралды 8,610

Steve Griffith - Prof3ssorSt3v3

Steve Griffith - Prof3ssorSt3v3

Күн бұрын

Пікірлер: 29
@haibaidzokwomandre1468
@haibaidzokwomandre1468 Ай бұрын
Team The Odin Project here
@FigueMonk
@FigueMonk 24 күн бұрын
Stay hard Odins
@bmehder
@bmehder Жыл бұрын
This is an invaluable series. Where was this 15 years ago? :-) A bonus tip I just discovered: You can switch the docking position of the dev tools with the keyboard shortcut Cmd + Shift + D on Mac or Ctl + Shift + D on Windows.
@LearnedJohn
@LearnedJohn 24 минут бұрын
THE Odin Project
@PaulMcCannWebBuilder
@PaulMcCannWebBuilder Жыл бұрын
It sure sounded like your dog answered the 1 + 1 question correctly.
@debeerpaul
@debeerpaul Жыл бұрын
Awesome video. Love your dog in the back haha
@RioTheHitman
@RioTheHitman Жыл бұрын
Great tips that table command looks very useful 👌🏾
@alpoochin8
@alpoochin8 Ай бұрын
At 7:12 of the video, you highlight error,warn,info then comment // out all 3 at once, How did you do that? Great video as whole too! Very informative!
@devstefancho
@devstefancho Жыл бұрын
great explanation, easy to understand thanks
@Gauss6174
@Gauss6174 Жыл бұрын
learned a lot, thank u. would love to learn more about the application tab in chrome devtools as well if u ever decide to do a more in depth video of what all the different options in that tab are for exactly like the application/storage/background services and the options in them like local and session storage, back/forward catche, and all the other ones that are important in ur experience. i'm sure a bunch of them are prob self-explanatory just from their name, but i've never messed with them before. either way, learned a lot, thanks
@SteveGriffith-Prof3ssorSt3v3
@SteveGriffith-Prof3ssorSt3v3 Жыл бұрын
Application tab is coming soon
@tomlaskar4226
@tomlaskar4226 4 ай бұрын
I have no internet on my PC. A lighting affected it. Only my phone I have. I am learning JS with Chrome console alone. This helps a lot.
@SteveGriffith-Prof3ssorSt3v3
@SteveGriffith-Prof3ssorSt3v3 4 ай бұрын
@@tomlaskar4226 good luck
@schweremberger
@schweremberger 4 ай бұрын
Great video. It was quite helpful! Thanks, Steve.
@mgcmsn
@mgcmsn Жыл бұрын
The "Verbose" level is for 'console.debug()'
@farhadcohan8867
@farhadcohan8867 10 ай бұрын
Steve this is awesome do you have any video about JS for beginners I love the way you explain I don’t get tired of of watching your video one question how do you get ride of undefined in console I know by holding shift key and return we won’t get is but it’s annoying thank you
@SteveGriffith-Prof3ssorSt3v3
@SteveGriffith-Prof3ssorSt3v3 10 ай бұрын
Which "undefined" are you talking about? Do you mean undefined appearing below a line of code that you type in the console? The console will and should always display the value that is returned from each line of code. For many lines that you will type, the return value will be undefined.
@uimonk
@uimonk Жыл бұрын
please make more such useful content. respect from India
@axel.g4638
@axel.g4638 Ай бұрын
Hi! Great video and very informative! I just have one question. Does console.dir(data); actually convert the variable into the JSON equivalent or even a string at all? Doesn't it just display the JavaScript object itself in a structured and interactive format? Like, its still a JavaScript object , not a JSON string (property names must be in double quotes in JSON). I heard we use JSON.stringify to explicitly convert the object into a string for storage, transmission, or non-interactive display. Is that true? Thank you!
@SteveGriffith-Prof3ssorSt3v3
@SteveGriffith-Prof3ssorSt3v3 Ай бұрын
console.dir stands for display interactive. It is intended to display the variable as an interactive object so you can see the properties and prototype. For many objects, this won't make a difference with .log It does make a difference with HTML elements. Like the two versions below. ``` some content ``` vs ``` HTMLParagraphElement - id - title - etc ``` To convert to JSON and transmit, we can only use arrays, objects, string, number, boolean, and nulls. HTML elements have no equivalent in JSON. You could take an HTML string and save it as part of a JSON file, but not an HTML object.
@AJSpeller
@AJSpeller 6 ай бұрын
lol Steve said "1+1" and the dogs barked 2 times
@ChocolateTaiyaki
@ChocolateTaiyaki 4 ай бұрын
The Odin Project recommended your video for our foundation Javascript course. Is it normal if I don't understand a single thing you're saying? :(
@SteveGriffith-Prof3ssorSt3v3
@SteveGriffith-Prof3ssorSt3v3 4 ай бұрын
@ChocolateTaiyaki it depends. If you have been learning JS for a couple years and you don't understand then I might worry. If you are new to JS then you might be missing some of the context. Many of these videos are things that I make for my own students. I point them to the appropriate videos when I know it is the right time. When learning development tools, sometimes you just start by being aware that the tools exists. Then you will remember when you come across a situation that requires the tool.
@246rs246
@246rs246 Жыл бұрын
very helpful like always
@shahinza
@shahinza Жыл бұрын
Thank you
@the42project-c8h
@the42project-c8h Ай бұрын
Good man
@noonecares6816
@noonecares6816 Жыл бұрын
This maybe silly but how do you make a full page just the console it self.
@SteveGriffith-Prof3ssorSt3v3
@SteveGriffith-Prof3ssorSt3v3 Жыл бұрын
when you open the tools, if you are on the elements panel there can be a bottom segment that has tabs including Console. However, Console has its own tab that can be opened. You can close the lower panel to just show the elements or the console. Additionally, if you click on the 3 dot menu in the top bar there are options for "Dock side" which includes opening the console as a separate window.
@noonecares6816
@noonecares6816 Жыл бұрын
@@SteveGriffith-Prof3ssorSt3v3 Thanks
Chrome Dev Tools Source Panel and Breakpoints
18:21
Steve Griffith - Prof3ssorSt3v3
Рет қаралды 7 М.
Chrome Dev Tools Network Traffic
17:53
Steve Griffith - Prof3ssorSt3v3
Рет қаралды 12 М.
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
Chrome Dev Tools Debugging CSS
16:18
Steve Griffith - Prof3ssorSt3v3
Рет қаралды 11 М.
How To Debug React Apps Like A Senior Developer
21:07
Web Dev Simplified
Рет қаралды 184 М.
Chrome DevTools Complete Course - Learn to debug your frontend code
1:53:49
Mehul - Codedamn
Рет қаралды 107 М.
14 Must Know Chrome Dev Tools Tricks - #JavaScript30 9/30
10:36
Chrome Debugger is BETTER than you might think
15:08
Dev Leonardo
Рет қаралды 10 М.
Revealing the Differences between HTML Dialogs and the Popover API
24:14
Steve Griffith - Prof3ssorSt3v3
Рет қаралды 9 М.
Google Chrome Developer Tools Crash Course
51:20
Traversy Media
Рет қаралды 690 М.
Chrome DevTools: From friction to flow
16:28
Chrome for Developers
Рет қаралды 11 М.
Chrome Dev Tools Overview for Web Testing
28:07
EvilTester - Software Testing
Рет қаралды 19 М.
How to Do 90% of What Plugins Do (With Just Vim)
1:14:03
thoughtbot
Рет қаралды 912 М.