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.
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 })
Hi friends. Hope you are doing well. In this video, I explained how both the lists , i.e., ordered and unordered lists can be used in HTML - Exercises 3 - Ordered and Unordered Lists Please Link, Subscribe, Share and Comment.
Comments
Post a Comment