Values, types, and the console
Your first Smart Ledger snapshot
JavaScript programs start with values. A business name is text, revenue is a number, and VAT registration is a yes/no fact. In this module you will store each value, inspect its type, and render a business snapshot on the page.
The browser console is a diagnostic tool, not a place to guess. Use it to see what the program actually knows.
التعليمات
Create a constant named businessName and assign it a string.
تلميح: Use: const businessName = '...';
Create monthlyRevenue as a number and vatRegistered as a boolean.
Log the type of at least one value with typeof.
Write the snapshot into the element with id output.
الكود الخاص بك
صف ما تريد بناءه في هذه الخطوة وسأكتب الكود — ثم انقر «تطبيق» لإدراجه في محرّرك. هذه الخطوة: Create a constant named businessName and assign it a string.