codex-lv2-may-2025

Level Navigation: 0 Current Level: 1 2 3 4 5 6


Lesson: Introduction to Settings Files and JSON

🎯 Objective

Learn what settings files are, understand JSON format, and master the basic syntax rules for creating configuration files.


πŸ“Œ What Are Settings Files?

A settings file is a special file that controls how a program behaves. Many tools like VSCode, web servers, and apps use configuration files to let users customize behavior without changing the program itself.

In VSCode, the settings file is written in a format called JSON.


πŸ—‚οΈ What is JSON?

JSON stands for JavaScript Object Notation. It’s a structured way to store data as key-value pairs.

Example JSON:

{
    "catName": "Ginger",
    "age": 1,
    "isAdopted": true,
    "weight": 4
}

βœ… Understanding Each Value

βœ… General JSON Rules


βœ… Summary

After you read this page, move on to the next lesson.


Level Navigation: 0 Current Level: 1 2 3 4 5 6