🔥 Angular Services Unlocked !
3:44
Пікірлер
@ShivamSahu-td8ix
@ShivamSahu-td8ix 27 күн бұрын
❤❤
@AnkitYadav-xd3pi
@AnkitYadav-xd3pi Ай бұрын
Sir Please provide answers ✌
@braveji
@braveji Ай бұрын
quiz ka answer hai bhai ache se dekho timer end k baad
@OctaBrainComputer
@OctaBrainComputer 3 ай бұрын
Angular v17, v18 Use this command ng new app name --no-standalone
@shivamsahu4658
@shivamsahu4658 3 ай бұрын
🌟 This quiz was a fantastic challenge! It really made me think about the nuances of synchronous vs asynchronous programming and how callbacks and promises fit into the bigger picture. I appreciate the clear explanations and real-world examples! 💻✨ This video has truly helped me solidify my understanding and boosted my confidence for tackling written tests in interviews. Mastering these concepts is crucial for any JavaScript developer, and this quiz is a perfect way to prepare. Looking forward to more quizzes like this-keep up the great work! 🚀
@nadexom
@nadexom 3 ай бұрын
This project is awesome
@bhagwandassahu2325
@bhagwandassahu2325 4 ай бұрын
"Great video! I really appreciated the clear explanations and examples of different string manipulation techniques. The visuals helped to illustrate the concepts perfectly. I especially found the section on [specific topic, e.g. substring extraction or regex] to be super helpful. Thanks for sharing your expertise and making this topic more accessible. Keep up the good work!"
@ms_anirudh
@ms_anirudh 5 ай бұрын
Please remove BG Noice it will be easier to understand...
@shivamsahu4658
@shivamsahu4658 6 ай бұрын
USEFUL
@swatichaturvedi5553
@swatichaturvedi5553 6 ай бұрын
Background sound is irritating
@shivamsahu4658
@shivamsahu4658 6 ай бұрын
USEFUL CONTENT
@shivamsahu4658
@shivamsahu4658 7 ай бұрын
help me alot thanks
@AkashSingh-kb6vh
@AkashSingh-kb6vh 8 ай бұрын
Wao it help me alot
@shivamsahu4658
@shivamsahu4658 8 ай бұрын
NICE
@shivamsahu4658
@shivamsahu4658 8 ай бұрын
nice
@avrgjignes
@avrgjignes 8 ай бұрын
thank you
@xorrrp
@xorrrp 9 ай бұрын
please lower the music volume haha
@RuqaiyyahFathimaS
@RuqaiyyahFathimaS Жыл бұрын
great Sir can u do this in drop down values
@targetdevelopers2585
@targetdevelopers2585 Жыл бұрын
yes check in my channel
@antoroselin9005
@antoroselin9005 Жыл бұрын
You are explaining very well but the background music is really annoying and please dont use background music in the tutorials.Thank you
@digitalpanda5969
@digitalpanda5969 Жыл бұрын
Thanks great teaching skills
@windowview1
@windowview1 Жыл бұрын
Thank you
@braco0000
@braco0000 Жыл бұрын
Thanks!
@mathang8714991
@mathang8714991 Жыл бұрын
You don't need background music for a tutorial. Your voice already sounds proper
@musthafajm
@musthafajm Жыл бұрын
Remove or change the BGM. it’s dominating.
@sakshamsharma5484
@sakshamsharma5484 Жыл бұрын
Nice explanation
@gucigsng2251
@gucigsng2251 Жыл бұрын
thanks, but can you help me with one problem? My view page can't see other angular components except for app-root.
@VijaySingh-mk7so
@VijaySingh-mk7so Жыл бұрын
what is the use of this.filteredBank[0] ? why do we need a 0th element . Can we use without the array ?
@bniharika5563
@bniharika5563 Жыл бұрын
How can we access the json file if it's placed in root folder?
@sujis3524
@sujis3524 Жыл бұрын
Thank you for this video
@MohamedRiyaz-z2s
@MohamedRiyaz-z2s Жыл бұрын
npkill is not recognized in terminal nu varudhu bro
@AntoRex-fl4nx
@AntoRex-fl4nx Жыл бұрын
Thank you for the useful video. Kind request to remove the background music its really annoying and disturbing lot to hear you clearly.
@mouhamedaminebouhlel
@mouhamedaminebouhlel Жыл бұрын
thank you
@mouhamedaminebouhlel
@mouhamedaminebouhlel Жыл бұрын
thank you
@DaulatSahu-kl9qf
@DaulatSahu-kl9qf Жыл бұрын
that is very usefull i am also sahu bro......
@targetdevelopers2585
@targetdevelopers2585 Жыл бұрын
*source code - *HTML file -* <!-- header --> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="/">Bank Form</a> </nav> <!-- labels --> <label class="ml-4 mt-2">Bank Names</label> <label class="ml-5 mt-2">Bank Pincodes</label> <div class="extdiv mt-0" > <!-- bank dropdown --> <select (change)="onPostOfficeChange()" [(ngModel)]="selectedBank"> <ng-container *ngFor="let bank of banks"> <option *ngFor="let postoffice of bank.PostOffice"> {{ postoffice.Name }} </option> </ng-container> </select> <!-- pincode dropdown --> <select class="ml-3"> <option> {{ this.filteredBank[0].Pincode }} </option> </select> </div> <!-- // display information --> <div class="mt-5 ml-3" *ngIf="isSelected"> <h6>Your Bank is : {{ this.filteredBank[0].Name }} </h6> <h6>Your Branch is : {{ this.filteredBank[0].BranchType }} </h6> </div> *Typescript file* import { Component, OnInit, ViewChild } from '@angular/core'; @Component({ selector: 'app-select-drop-down', templateUrl: './select-drop-down.component.html', styleUrls: ['./select-drop-down.component.css'] }) export class SelectDropDownComponent implements OnInit { isSelected: boolean; filtered: Object[]; selectedBank; postoffice: any = {}; filteredBank: any = [{}]; // array of json objects banks = [ { "PostOffice": [ { "Name": "Baroda House", "BranchType": "Sub Post Office", "Pincode": "111111" }, { "Name": "Bengali Market", "BranchType": "Head Post Office", "Pincode": "110001" } ] } ] constructor() { } ngOnInit() { } onPostOfficeChange() { this.filtered = this.banks[0].PostOffice.filter(s => s.Name === this.selectedBank); this.filteredBank = this.filtered; this.isSelected = true; } }
@shivamsahu4658
@shivamsahu4658 Жыл бұрын
thanks
@chiragjoshi3493
@chiragjoshi3493 Жыл бұрын
You are doing good job... Thanks
@random_stuff_01v
@random_stuff_01v Жыл бұрын
I have imported MatTableModule in module.ts file but still I'm getting error in dataSource : " Can't bind to 'dataSource' since it isn't a known property of 'table' "
@gopalchaudhary6170
@gopalchaudhary6170 2 жыл бұрын
Thank you so much bro
@meghalake2540
@meghalake2540 2 жыл бұрын
Can we use 2 mat-tables .. In that how to intialize 2 datasourse... After it will display duplicate
@pratibhadeshmukh7897
@pratibhadeshmukh7897 2 жыл бұрын
Please make video on crud opertion & data pass using subject. Thanks
@rizzchaudhari2113
@rizzchaudhari2113 2 жыл бұрын
Where You have placed that dummy JSON data?
@shivamsahu4658
@shivamsahu4658 2 жыл бұрын
<p>{{developers|json}}</p> <h1 style="color: blue">{{data|json}} </h1> //Array of JSON oBJECTS developers = [ { id: 1, name: 'shivam', gender: 'male' }, { id: 2, name: 'sunny', gender: 'male' }, { id: 3, name: 'alexa', gender: 'female' }, { id: 4, name: 'sunny', gender: 'male' } ] data: any; constructor() { } ngOnInit(): void { // find() operation this.data = this.developers.find( (obj) => { return obj.name == 'sunny' } ) console.log(this.data); }
@mohanraj1368
@mohanraj1368 2 жыл бұрын
Good works, but long video for Simple concept, reduce video time
@anubhasahu356
@anubhasahu356 2 жыл бұрын
Awesome..please make video for all higher order functions like map reduce also. And also make videos for built in methods of Object ,String and Array Thanks
@shivamsahu4658
@shivamsahu4658 2 жыл бұрын
//Array of JSON Objects const developers = [ { id: 1, name: 'shivam', gender: 'male' }, { stid: 2, name: 'sunny', gender: 'male' }, { stid: 3, name: 'alexa', gender: 'female' }, { stid: 4, name: 'sunny', gender: 'male' } ] //Filter an Array of JSON Objects let filter = developers.filter( (obj) => { return obj.name == 'sunny' } ) console.log(filter) }
@mitrofanzxc
@mitrofanzxc 2 жыл бұрын
Как это развидеть?
@edgaryeganyan5450
@edgaryeganyan5450 2 жыл бұрын
Very helpful video , I am creating firebase with Angular , stuck in the stage when I should import JSON for the Realtime Database , and don't know how to create JSON , what should I run in it , or it doesn't matter, should I create JSON in my Angular project , or I should create just a new file. Does anyone know the solution? Thanks in advance!
@revo5826
@revo5826 2 жыл бұрын
music op brother
@sudhanshumishra2083
@sudhanshumishra2083 2 жыл бұрын
Bhai why you stopped making videos Seriously you explain so clearly i loved it brother thanks
@targetdevelopers2585
@targetdevelopers2585 2 жыл бұрын
i will resume for u
@sudhanshumishra2083
@sudhanshumishra2083 2 жыл бұрын
@@targetdevelopers2585 thanks yaar
@paritashah8430
@paritashah8430 2 жыл бұрын
I am getting error "provided data source did not match an array observable or datasource". When I console.log(data) it shows data is within some object ------> { statusCode:200, errorMsg:'No response', exception: 'No response', response: Array(682), successMsg: 'success'} If I toggle that arrow next to "response" that is where my entire array is that I want to store in dataSource. Can someone please assist? I tried to write [dataSource] = "users.response". but not working.