Angular 12 tutorial in Hindi # 33 Advance Pipes

preview_player
Показать описание
In this angular 12 version video, we learn about advance things of angular pipes and get to know why use pipes in interview questions. This video is made by anil Sidhu in the Hindi language.

Params with pipes
Use 2 pipes at the same time
Number pipes
Slice pipe
Currency Pipes
Interview Question

Рекомендации по теме
Комментарии
Автор

Here is i did 1st latter capital and other all smaller
<h2>{{ "hello how are you" | slice:0:1 | uppercase }}{{ "hello how are you" | slice:1 | lowercase }}</h2>

codingislife
Автор

thanks bhai, here are less videos of angular on youtube. you made these videos with very skillfully teaching. thanks again.

budgetarena
Автор

Thank you so much for creating these videos. The way you explain each things makes my life easier. Great work !!!!

PoonamSharma-uzqf
Автор

Kya Simple way of presentation he apka anil Sch me bahut shandar vedios banate ho

sandippandya
Автор

{{"hello how are you" | titlecase}}
output= Hello How Are You (All Starting word in cappital)

rishisharma
Автор

Thanks a lot! Your videos have been very helpful. If possible please make a video on sidenav.

adi
Автор

Only first latter or all words 1st latter?

codingislife
Автор

<h1>{{"hello how are you" | slice : 0 : 1 | uppercase}}{{"hello how are you" | slice : 1 : "hello how are you".length | lowercase}}</h1>

bilalsarwar
Автор

<h2>{{title | titlecase}}</h2>
by using titlecase

AMITKumar-mouh
Автор

<h1>{{title | slice : 0 : 1 | uppercase}}{{title | slice : 1 : title.length | lowercase}}</h1>

NYNTECH
Автор

<h2> {{"hello how are you" | slice :0:1 | uppercase}} </h2>

monikagupta
Автор

{{"hello how are you" | slice : 0 : 1 | uppercase}}{{"hello how are you" | slice : 1 | lowercase}}

abhinavchaudhary
Автор

<p>{{"hello how are you" | titlecase}}</p>

nikitaliya
Автор

Capital First Letter Using {{" hello how are you " | titlecase }}

sidheshwarshekade
Автор

<h3> {{"hello how are you" | capitalize }} </h3>

SafarMansuri-eugv
Автор

<h2>{{"hello how are you" | titlecase}}</h2>

iRambo_
Автор

<h1>{{name | titlecase}}</h1>

faisalmasood
Автор

how you print 289090 in INR like 2, 89, 090

arnabjyotithakuria
Автор

<h3>{{"hello world" | titlecase }}</h3>

bidyutmandal
Автор

{{ 'hello how are you?' | titlecase }}

atifazad