| Term | Definition |
|---|---|
| API | Application Programming Interface |
|
API Examples & Details:
APIs let applications communicate — think food ordering apps talking to a restaurant’s system.
|
|
| JSON | JavaScript Object Notation |
|
JSON Examples & Details:
JSON stores and exchanges data in a human-readable way:
{
"name": "ChatGPT",
"type": "AI"
}
|
|
recent posts
about
the Basics
.definition-table {
width: 100%;
border-collapse: collapse;
font-family: sans-serif;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.definition-table th,
.definition-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.definition-table th {
background-color: #f0f0f0;
}
.definition-row:hover {
background-color: #f9f9f9;
cursor: pointer;
}
.definition-card {
display: none;
background-color: #fafafa;
}
.definition-card .card-content {
padding: 16px;
background: white;
border: 1px solid #ddd;
border-radius: 8px;
margin: 12px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
function toggleCard(id) {
var el = document.getElementById(id);
if (el.style.display === “table-row”) {
el.style.display = “none”;
} else {
el.style.display = “table-row”;
}
}