In this video,I explained the Introduction Of Angular and basic requirement for it. Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my YouTube Videos.
In this video,I explained interface in TypeScript . Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my Angular Playlist .Please visit my YouTube Videos . The code is as follows - interface.ts - interface Chat { // Chat is the interface name x: number, y: number } let doChat = (chat: Chat) => { // doChat - arrow function console.log("The value of x:- " + chat.x); // chat - parameter console.log("The value of y:- " + chat.y); } doChat({ x: 20, y: 40 }) interface1.ts - interface anik { x: number, y: number } let singh = (abc: anik) => { console.log(abc.x); console.log(abc.y); } singh({ x: 1, y: 2 })
Hello everyone. In this video, I explained the frameset tag in html - HTML - Frameset Tag in html . For more, please subscribe the channel. If you have any doubt, please comment in this video. Check my playlist - HTML Playlist Please like, comment, share and subscribe.
Hope you are doing well. In this video, I explained the anchor tag in html - HTML - Anchor Tag in html . Don't forget to subscribe my channel and press the BELL icon. Check my YouTube Playlist - HTML Playlist Please Link, Comment, Share and Subscribe.
Comments
Post a Comment