آموزش جاوا اسکریپت | متغیرهای جاوا اسکریپت | قسمت دوم |2024

تعداد بازدید : 7 | تاریخ انتشار : 10 اردیبهشت 1403 11:24 | مدت زمان : 00:12:48 | دسته بندی : فناوری و رایانه

در این دوره آموزشی قصد داریم تا شما را با اصول برنامه نویسی با زبان قدرتمندJavaScript اشنا کنیم. این مجموعه آموزشی یک مجموعه کامل برای آموزش زبان برنامه نویسی JavaScript است . 00:00:00 declaration assignment 00:01:51 numbers 00:04:29 strings 00:06:57 booleans 00:09:24 exercises // variable = A container that stores a value. // Behaves as if it were the value it contains. let fullName = "Bro Code"; let age = 25; let isStudent = false; document.getElementById("p1").textContent = `Your name is ${fullName}`; document.getElementById("p2").textContent = `You are ${age} years old`; document.getElementById("p3").textContent = `Enrolled: ${isStudent}`;

برنامه نویسی,javascript,جاوا اسکریپت