- Tracks and manages changes to software code, files, documents, or other collections of information over time
- It helps to recall specific versions later.
- Helps software development teams to manage the changes happening to source code over time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ Name: "Budh Ram Gurung", Years: 3 },{ Name: "Yuvraj", Years: 2 },{ Name: "Nithya", Years: 5 }] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def sum(a, b) | |
| a + b | |
| end |
Firstly, what is <details> <summary>?
The HTML Details Element (
<details>) creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label can be provided using the<summary>element. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details.