Techoceanhub logo
admin

admin

Inheritance in Kotlin – (Chapter-8)

We have worked with inheritance concepts in Java, c#, and many other languages, but now let’s see how the inheritance concept works with Kotlin. By definition, we all know that inheritance means acquiring some or whole properties of the parent…

Understand Two Way binding in Vue JS – 4

In this lesson we will see example regarding , how to pass the data both the way. Two way data binding means: When the user types in the input , value gets updated to match the value in input . When you update…

Understand the Events in Vue3 JS – 2

This chapter provide the basic example of event handling in Vue JS Example: In this example, we can see, how to call method on button click event for that I have added 2 buttons, Add and Subtract to increase and…

Introduction of Vue 3 JS – 1

This chapter provide the basic example, how to create the Vue 3 JS app You can read more detail about the vue3 JS installation Example: In this example, we can see the basic tag to create Vue3 app, and…

Basic Git commands

This is important thing in software Development to have knowledge about Basic Git command. Git Task Command Tell Git who is using Configure the author name and email address to be used with your commits. Note that Git strips some characters (for…

How to create a Table in the HTML

Html Table allow web developer to create tabular data format having multiple rows and column. Tables Tag Description <table>  a table tag <caption>  a table caption <th> a header cell in a table <tr> a row in a table <td>…

Introduction to HTML

HTML stands for Hyper Text Markup Language used by the browser to manipulate images, contents, texts and other content, in order to display it in the required format. Also, it describes the structure of a Web Page. :: Below are…

Html forms and input type

The <form> Element The HTML <form> element is used to create an HTML form for user input: <form> <input type=”text” name=”txtFname”/></form> The <form> element is a container for different types of input elements, such as: text fields, checkboxes, radio buttons, dropdown, submit buttons, etc.…