The Best part of this tutorial series is that you worked on typescript(ts) file itself for tutorial purpose which made great understanding of concepts, I have gone through other tutorials as well which leads to confusion, this series is awesome, I recommend with 5 star rating. Thanks for such wonderful tutorial
@jackabrams58594 жыл бұрын
For this specific example you could also do You picked {{ color }}
@samuelpmilanez5 жыл бұрын
You are the best teacher i've saw. Your course is direct and objective. Congratulations!
@aviet904 жыл бұрын
Vishwas Sir:- YOUR CONTENT IS AWESOME......
@goodmorning17755 жыл бұрын
Thank you )) picked - red picked - blue picked - green Pick again
@aleismasanchez5 жыл бұрын
The playlist is awesome. You explain very well every topic.
@Bluebutterfly33596 жыл бұрын
Thanks for your videos. They are very detailed and clean. Keep up the great work!
@jeremydick5184 жыл бұрын
I agree, I have watched so many tutorials that don't work or some important part is missing or not explained well and countless hours can be lost... Do you do private consulting?
@tomc21773 жыл бұрын
short simple and to the point! Thank you
@Намбаванинзеворлд6 жыл бұрын
Thank you! Your tutorials are the best.I Am waiting new videos.
@georgeasfahani68223 жыл бұрын
u r a life savior !
@sirwrad6 жыл бұрын
wtf you're so great! I learned in just 5 seconds of your video
@mohdmuzaffarahmed49234 жыл бұрын
Amazing content 🔥
@rushendrarushi5 жыл бұрын
Aren't we supposed to use * instead of [ ] because you said in the structural directives video that we need to initialize it with * . [ ] represents property binding as per my knowledge, gained by your tutorials.
@sonamohialdin33762 жыл бұрын
Very useful tutorial
@fabiotchezaum6 жыл бұрын
Great videos but I have a question; in a previous video you say that you're using Angular 5 but in the title you say Angular 7... Which one is correct?
@Codevolution6 жыл бұрын
I recorded when it was version 5 but the concepts I've covered do not change from version 5 to 7. You can still watch them :)
@bawagrafix6 жыл бұрын
@@Codevolution it really makes not much difference and nothing to worry about versions
@winnemucca-sk53926 жыл бұрын
I can't get switchcase to set through a container component with an @Input. Is there something extra to this with ngswitch?
@bhagidasari90515 жыл бұрын
Its always displaying "Pick Again". No errors. Syntax is same. Agular CLI version : 6.2.4 Can some guide me?
@FitLife67676 жыл бұрын
Very good ...thank you!
@kitikimedia50293 жыл бұрын
why to single quotes here [ngSwitch]="color" and double quotes for case *ngSwitchCase="'yellow'"
@mostafaessam57984 жыл бұрын
hi, I want to know the name of the extension that makes auto-complete in vscode in angular?
@yifi3184 жыл бұрын
"Please" "thank you"
@saurabhkumar-vj6xp4 жыл бұрын
emmet automcomplete
@ai.aspirations6 жыл бұрын
thanks Vishwas
@IndianYakker3 жыл бұрын
Thanks a lots
@codeordie-uw1il6 жыл бұрын
why the values in *ngSwitchCase are in double quote and then single quote
@inhquangtien38445 жыл бұрын
because the value of color property is a string type.
@kubraylmaz45316 жыл бұрын
thank you soo much:))
@J0hn1ee6 жыл бұрын
very good
@code_with_shyam5 жыл бұрын
does anyone tell me, how to comment code?
@thendoronnyramashia7495 жыл бұрын
Highlight the code you want to comment and then press control then press the question mark button.
@chenchubattablogs3455 жыл бұрын
Shall we *ngSwitch like same as *ngIf
@ravig7235 жыл бұрын
if is only one condition so we have used * but switch is not single condition so we don't use (*) it here.
@bruhaspati5606 жыл бұрын
why cant we use *ngSwitch it would have been much easier!!:(
@inhquangtien38445 жыл бұрын
NgSwitch itself is not a structural directive. It's an attribute directive that controls the behavior of the other switch directives. That's why you write [NgSwitch], never *ngSwitch.