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

تعداد بازدید : 14 | تاریخ انتشار : 10 اردیبهشت 1403 11:33 | مدت زمان : 00:08:27 | دسته بندی : تحصیلات و یادگیری

در این دوره آموزشی قصد داریم تا شما را با اصول برنامه نویسی با زبان قدرتمندJavaScript اشنا کنیم. این مجموعه آموزشی یک مجموعه کامل برای آموزش زبان برنامه نویسی JavaScript است . این ویدیو سری سوم از این دوره آموزشی است. 00:00:00 arithmetic operators 00:03:21 augmented assignment operators 00:04:54 increment/decrement operators 00:05:23 operator precedence 00:07:51 conclusion // arithmetic operators = operands (values, variables, etc.) // operators (+ - * /) // ex. 11 = x + 5; let students = 30; //students = students + 1; //students = students - 1; //students = students * 2; //students = students / 2; //students = students ** 2; //let extraStudents = students % 3; console.log(students); //students += 1; //students -= 1; //students *= 2; //students /= 2; //students **= 2; //students %= 2; //students++; //students--; /* operator precedence 1. parenthesis () 2. exponents 3. multiplication division modulo 4. addition subtraction */

آموزش برنامه نویسی,java script,اموزش جاوا اسکری