Author, Your courses are very interesting and you are the best teacher! thank you !
@na_you_mess_am7 жыл бұрын
your a really great teacher and patient I love your videos
@mdwazid48067 жыл бұрын
Hi Sir, really its a very very good video clip for angula2 b`coz your way of teaching and English pronunciation is very good please provide this type video sir. I searched lots video not like that thank You sir
@squashtomato7 жыл бұрын
Thank you very Much. When I have my laptop I shall try it out :D
@V1kToo6 жыл бұрын
brilliantly explained
@RachitJain4U5 жыл бұрын
Awesome :) Thanks :)
@AdebayoAdegbemboAsa5 жыл бұрын
Thank you so so much!!!
@anu17083 жыл бұрын
Sir as in my-app The sentence Loading AppComponent content here.. Can we set timing like till what time it should display.
@premkagrani1547 жыл бұрын
Hello Sir, Can you please explain the point of Sanitizing the content which you have demonstrated in the end in this video. I googled Sanitized but was unable to understand the real meaning of it in angular. Any help will be appreciated. Thanks
@MrWiseCommentator7 жыл бұрын
You can find more information on angular official documentation. angular.io/guide/security
@puttaarunkumar9197 жыл бұрын
At instant 5:46 their should not be quotes when you are using interpolation.
@AdvikaSamantaray6 жыл бұрын
I thought the same. Then i tried by removing quotes and it still didn't work, where as property binding worked correctly. So I guess the point is right.
@faizankhan-eq7ev7 жыл бұрын
Using square brackets [propertyName], you are setting property of that HTML tag, using interpolation simply on an attribute, attribute={{value}}, you are setting value of an attribute of that tag , not the property , most of the attributes have equivalent property name but some don't
@shaiksaidavali72797 жыл бұрын
What is it about "innerHtml" property .was it work only in angular JS or without any JS like
@pradeeshbm55587 жыл бұрын
Need some more explanation for interpolation and property binding. I really didn't understand the main difference (When to use).
@raqibul10007 жыл бұрын
Thanks a Billions.
@taherhendawi88747 жыл бұрын
Great job thnx a lot ! i didnt understand the last point.. i have not noticed any sanitize !!??
@Devilsnightforlife7 жыл бұрын
He created a string which contained javascript tags with an alert method. If he just displayed the string in html, like if he didn't bind the string but just wrote it in the html, then the browser would interpret that there was a script in the string and would then attempt to run it, displaying an alert with the word "hacked". This could lead to cross-site scripting attacks. However, because both interpolation and property binding sanitizes the string, it ensures that the html won't read the malicious script in the string as javascript but instead interpret the whole thing as html. The property binding removes potentially dangerous tags, such as the tags, and interpolation escapes the string while keeping all of its content intact.
@taherhendawi88747 жыл бұрын
Thor Klauson thnx a lot :)
@naodagere82104 жыл бұрын
Thank you Sir
@vishakhatomar84167 жыл бұрын
i am getting this error for both span and div . "Can't bind to 'innerhtml' since it isn't a known property of 'div'." Due to this page is not loading.
@srinivasrapaka47297 жыл бұрын
write innerHtml not innerhtml
@RachitJain4U7 жыл бұрын
Thank You Sir :)
@johnny_rain32267 жыл бұрын
Thank you
@choudharyrahul7226 жыл бұрын
is getting rendered as .. The innerHtml is not getting rendered.
@harshshrivastava26206 жыл бұрын
change the spelling to [innerHtml] ...:)..hope it works..its working fine for me.
@semikolon42297 жыл бұрын
thanks, man
@johannjust47236 жыл бұрын
nice job =)
@NKSazzie7 жыл бұрын
Hii, I tried this ( isDisabled = false; ) without defining the type of isDisabled as boolean in app.component.ts. But still this is rendering fine . I can't get why this behaviour is happening. It would be great if you include a tutorial specific to typescript.
@nageshsrinivas80456 жыл бұрын
since typescript compiles to java script even java script code is also treated as valid typescript.hence when you assign the value false to isDisabled it becomes a boolean as per java script rules.This scould be a reason why its working fine.
@varunbabu0087 жыл бұрын
@Kudvenkat Lengend !
@nandhinikumar49336 жыл бұрын
good tutorial
@WakefieldSeldon7 жыл бұрын
Typescript and Angular seem so meaningless to me. With ES6 and ES7 you can do the same things cleaner and faster.