My latest course for just $9.99. Ace your front end interviews with the '100 Front End Interview Questions Challenge'!!! www.udemy.com/100-front-end-interview-questions-challenge/?couponCode=CODINGGOD
Thank you, Dylan. You do these things so quickly, I'm still on drawing little diagrams to keep things straight in my head. But I know that if i keep practising and get the patterns down, it will become easier.
9:48 This string interpolation doesn't work in VSCode (1.52.1) for me. The "${person.name}" isn't changing color in the code, and it's literally injecting those characters into the HTML.
@@CodingTutorials360 Hi Dylan, somehow this is not working, no matter which ticks I use, doing this 2022 in current VSCode. Where could the issue now be? Thank you already for your answer!
This is one of the most valuable tutorial I had the chance to find regarding table manipulations in general all languages together (Autohotkey, Java, C#, Python, JavaScript). Thanks so much, subscribed and might buy your udemy 360 course on js, cheers
To while away the hours of Covid lockdown, I've been trying to teach myself js. I've created a few 'retro' games which seem to work well but would like to add a high score table to them, one where you can input your name if you succeed in getting the highest score. At the moment I'm struggling to find a course on UA-cam, not wanting to go down the Unity route - too complicated for this old man to master! Is it possible to run a high score course, say to update a minesweeper game? Regards, Lev
Hey Dylan, great video. You inspire me to continue and keep pushing myself in my coding journey. Can you build a similar table by getting data from a plateform like eventbrite?
Great job with the tutorial! I love it how you left some loose end hanging. While creating a table with columns that has both numbers and strings it felt a bit frustrating not to get the solution for sorting those strings, especially after trying 30 different approaches and breaking the whole table on the way. Many times. But after a small break and a bit studying all of the sudden things just fell into their place and it started to work like a charm. Not sure what happened or why it exactly even works but at least I'm a one tiny little step closer to my goals. :) Ohh, the frustration you get while trying to get the simpliest s**t to work. Or even respond in some way. Or at least not to break everything. But still there's something weirdly fashinating in this whole thing.
Hey Dylan, I think an error is that you put it at the end of the head right after style, it is best to put it at the end of the body not head. It's what my teacher suggested to all of us.
Line 38: When i run the program, this is the content of the cells: "${person.name}" and "${person.age}". The program doesnt get the actual data from the array. In addition, when I open my code in the editor, i don't get any suggestions after the dot when i type in "${person.}. Can someone help me?
The reason your template literals, "${person.name}" and "${person.age}", are not evaluating, is because you have surrounded them with double quotes. You must surround them with the backtick character instead ( ` ) (also known as a grave accent) otherwise they won't work. On my keyboard it is to the left of the [ 1 ] key.
Hello Dylan, I have followed your tutorial step by step, for some reason I can't display anything on my browser, other than table hander . Anyway you can help me? I hope you get this.
My latest course for just $9.99. Ace your front end interviews with the '100 Front End Interview Questions Challenge'!!!
www.udemy.com/100-front-end-interview-questions-challenge/?couponCode=CODINGGOD
why it is not free))
Thank you, Dylan. You do these things so quickly, I'm still on drawing little diagrams to keep things straight in my head. But I know that if i keep practising and get the patterns down, it will become easier.
Not working
please tell the suitable project description in few words
I have to add it to my resume as a mini project
Excellent. Thank you.
9:48 This string interpolation doesn't work in VSCode (1.52.1) for me. The "${person.name}" isn't changing color in the code, and it's literally injecting those characters into the HTML.
You need to use `` backticks.
@@CodingTutorials360 Ahh yes, I started researching the issue. Backticks. Thanks Dylan!
@@CodingTutorials360 Hi Dylan, somehow this is not working, no matter which ticks I use, doing this 2022 in current VSCode. Where could the issue now be? Thank you already for your answer!
@@phillosopherguitarist2673 by is dont worked too :/
I'm also facing the same issue🤧😢.
plzz help
Here is variant for text:
1. modify this part of "swith(dataType)":
switch(dataType) {
case 'number':
sortNumberColumn(sortDirection, columnName);
break
case 'string':
sortTextColumn(sortDirection, columnName);
break
}
2. after functiom sortNumberColumn add this:
function sortTextColumn(sort, columnName) {
personData = personData.sort((p1, p2) => {
return sort ? (p1[columnName] > p2[columnName]) - (p1[columnName] < p2[columnName]) : (p2[columnName] > p1[columnName]) - (p2[columnName] < p1[columnName])
});
}
Awesome !!!
This tutorial is a great job! It helps me a lot. Thank you!
Thank youuuu so much
This one really helped me a lot!!!!!
thank you for this tutorial : )
Very nice Dylan, thanks!!
Could you please tell me
How to add load more for the above example
Nice content
Muito obrigado, continue assim. me ajudou muito. :-)
Thank you Dylan! Awesome work. Will you be able to do another video for async data source?
please tell the suitable project description in few words
I have to add it to my resume as a mini project
Thank you sir
So, how would you sort the name column?
This is one of the most valuable tutorial I had the chance to find regarding table manipulations in general all languages together (Autohotkey, Java, C#, Python, JavaScript).
Thanks so much, subscribed and might buy your udemy 360 course on js, cheers
Thanks alot for this bro
Thanks a lot for this
Very good tutorial
how do you connect the array to the backend ?
Thanks Dylan excellent!
Do you have this in a git repo anywhere?
I watched it live Thanks
Isn't it a good practice to include script tags in the end?
To while away the hours of Covid lockdown, I've been trying to teach myself js. I've created a few 'retro' games which seem to work well but would like to add a high score table to them, one where you can input your name if you succeed in getting the highest score. At the moment I'm struggling to find a course on UA-cam, not wanting to go down the Unity route - too complicated for this old man to master! Is it possible to run a high score course, say to update a minesweeper game? Regards, Lev
Hey Dylan, great video. You inspire me to continue and keep pushing myself in my coding journey. Can you build a similar table by getting data from a plateform like eventbrite?
please tell the suitable project description in few words
I have to add it to my resume as a mini project
Cool sir
Great job with the tutorial! I love it how you left some loose end hanging. While creating a table with columns that has both numbers and strings it felt a bit frustrating not to get the solution for sorting those strings, especially after trying 30 different approaches and breaking the whole table on the way. Many times. But after a small break and a bit studying all of the sudden things just fell into their place and it started to work like a charm. Not sure what happened or why it exactly even works but at least I'm a one tiny little step closer to my goals. :)
Ohh, the frustration you get while trying to get the simpliest s**t to work. Or even respond in some way. Or at least not to break everything. But still there's something weirdly fashinating in this whole thing.
How do I sort String?
Can you teach how to do multi step form?
adding another columns gives XSS error. any solution?
Anyone please tell the suitable project description in few words
I have to add it to my resume as a mini project
Is anyone else having trouble with string interpolation on visual code.
Hey Dylan, I think an error is that you put it at the end of the head right after style, it is best to put it at the end of the body not head. It's what my teacher suggested to all of us.
What is the IDE used in this video called?
Visual Studio Code
columnName is not defined. so the function sortColumn doesn't work.
uf the names under my thead name and age is not listet why ? i belive i type the same code in my editor :/
#TeamThugNasty
Line 38:
When i run the program, this is the content of the cells:
"${person.name}" and "${person.age}".
The program doesnt get the actual data from the array.
In addition, when I open my code in the editor, i don't get any suggestions after the dot when i type in "${person.}.
Can someone help me?
The reason your template literals, "${person.name}" and "${person.age}", are not evaluating, is because you have surrounded them with double quotes. You must surround them with the backtick character instead ( ` ) (also known as a grave accent) otherwise they won't work. On my keyboard it is to the left of the [ 1 ] key.
Or you can use this variant: dataHtml += '' + person.name + '' + person.age + '';
Hello Dylan, I have followed your tutorial step by step, for some reason I can't display anything on my browser, other than table hander . Anyway you can help me? I hope you get this.
Same problem
same
Can i get the code?
nice shirt
Thanks! I not used your code, but `${val}` was useful. :D
adio is really low