JS Reference

JS by Category JS by Alphabet

JavaScript

JS Array JS Boolean JS Classes JS Date JS Error JS Global JS JSON JS Math JS Number JS Operators JS RegExp JS Statements JS String

Window

Window Object Window Console Window History Window Location Window Navigator Window Screen

HTML DOM

DOM Document DOM Element DOM Attributes DOM Events DOM Event Objects DOM HTMLCollection DOM Style
alignContent alignItems alignSelf animation animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationTimingFunction animationPlayState background backgroundAttachment backgroundColor backgroundImage backgroundPosition backgroundRepeat backgroundClip backgroundOrigin backgroundSize backfaceVisibility border borderBottom borderBottomColor borderBottomLeftRadius borderBottomRightRadius borderBottomStyle borderBottomWidth borderCollapse borderColor borderImage borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeft borderLeftColor borderLeftStyle borderLeftWidth borderRadius borderRight borderRightColor borderRightStyle borderRightWidth borderSpacing borderStyle borderTop borderTopColor borderTopLeftRadius borderTopRightRadius borderTopStyle borderTopWidth borderWidth bottom boxShadow boxSizing captionSide caretColor clear clip color columnCount columnFill columnGap columnRule columnRuleColor columnRuleStyle columnRuleWidth columns columnSpan columnWidth counterIncrement counterReset cursor direction display emptyCells filter flex flexBasis flexDirection flexFlow flexGrow flexShrink flexWrap cssFloat font fontFamily fontSize fontStyle fontVariant fontWeight fontSizeAdjust height isolation justifyContent left letterSpacing lineHeight listStyle listStyleImage listStylePosition listStyleType margin marginBottom marginLeft marginRight marginTop maxHeight maxWidth minHeight minWidth objectFit objectPosition opacity order orphans outline outlineColor outlineOffset outlineStyle outlineWidth overflow overflowX overflowY padding paddingBottom paddingLeft paddingRight paddingTop pageBreakAfter pageBreakBefore pageBreakInside perspective perspectiveOrigin position quotes resize right scrollBehavior tableLayout tabSize textAlign textAlignLast textDecoration textDecorationColor textDecorationLine textDecorationStyle textIndent textOverflow textShadow textTransform top transform transformOrigin transformStyle transition transitionProperty transitionDuration transitionTimingFunction transitionDelay unicodeBidi userSelect verticalAlign visibility width wordBreak wordSpacing wordWrap widows zIndex

Web APIs

API Console API Fullscreen API Geolocation API History API MediaQueryList API Storage

HTML Objects

<a> <abbr> <address> <area> <article> <aside> <audio> <b> <base> <bdo> <blockquote> <body> <br> <button> <canvas> <caption> <cite> <code> <col> <colgroup> <datalist> <dd> <del> <details> <dfn> <dialog> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <footer> <form> <head> <header> <h1> - <h6> <hr> <html> <i> <iframe> <img> <ins> <input> button <input> checkbox <input> color <input> date <input> datetime <input> datetime-local <input> email <input> file <input> hidden <input> image <input> month <input> number <input> password <input> radio <input> range <input> reset <input> search <input> submit <input> text <input> time <input> url <input> week <kbd> <label> <legend> <li> <link> <map> <mark> <menu> <menuitem> <meta> <meter> <nav> <object> <ol> <optgroup> <option> <output> <p> <param> <pre> <progress> <q> <s> <samp> <script> <section> <select> <small> <source> <span> <strong> <style> <sub> <summary> <sup> <table> <tbody> <td> <tfoot> <th> <thead> <tr> <textarea> <time> <title> <track> <u> <ul> <var> <video>

Other References

CSSStyleDeclaration JS Conversion


مرجع مشغلي جافا سكريبت


تُستخدم عوامل تشغيل JavaScript لتعيين القيم ومقارنة القيم وإجراء العمليات الحسابية والمزيد.


عوامل حسابية جافا سكريبت

تُستخدم العوامل الحسابية لإجراء العمليات الحسابية بين المتغيرات و / أو القيم.

بالنظر إلى أن y = 5 ، يوضح الجدول أدناه العوامل الحسابية:

Operator Description Example Result in y Result in x Try it
+ Addition x = y + 2 y = 5 x = 7
- Subtraction x = y - 2 y = 5 x = 3
* Multiplication x = y * 2 y = 5 x = 10
/ Division x = y / 2 y = 5 x = 2.5
% Modulus (division remainder) x = y % 2 y = 5 x = 1
++ Increment x = ++y y = 6 x = 6
x = y++ y = 6 x = 5
-- Decrement x = --y y = 4 x = 4
x = y-- y = 4 x = 5

للحصول على برنامج تعليمي حول العوامل الحسابية ، اقرأ برنامج JavaScript Arithmetic Tutorial .


عوامل تعيين جافا سكريبت

تُستخدم عوامل التعيين لتعيين قيم لمتغيرات JavaScript.

بالنظر إلى أن x = 10 و y = 5 ، يوضح الجدول أدناه عوامل الإسناد:

Operator Example Same As Result in x Try it
= x = y x = y x = 5
+= x += y x = x + y x = 15
-= x -= y x = x - y x = 5
*= x *= y x = x * y x = 50
/= x /= y x = x / y x = 2
%= x %= y x = x % y x = 0

للحصول على برنامج تعليمي حول مشغلي المهام ، اقرأ برنامج JavaScript Assignment Tutorial .



عوامل تشغيل سلسلة جافا سكريبت

يمكن أيضًا استخدام عامل التشغيل + والعامل + = لتوصيل (إضافة) السلاسل.

بالنظر إلى أن text1 = "Good" و text2 = "Morning" و text3 = "" ، يشرح الجدول أدناه عوامل التشغيل:

Operator Example text1 text2 text3 Try it
+ text3 = text1 + text2 "Good " "Morning"  "Good Morning"
+= text1 += text2 "Good Morning" "Morning" ""

عوامل المقارنة

تُستخدم عوامل المقارنة في البيانات المنطقية لتحديد المساواة أو الاختلاف بين المتغيرات أو القيم.

بالنظر إلى أن x = 5 ، يوضح الجدول أدناه عوامل المقارنة:

Operator Description Comparing Returns Try it
== equal to x == 8 false
x == 5 true
=== equal value and equal type x === "5" false
x === 5 true
!= not equal x != 8 true
!== not equal value or not equal type x !== "5" true
x !== 5 false
> greater than x > 8 false
< less than x < 8 true
>= greater than or equal to x >= 8 false
<= less than or equal to x <= 8 true

للحصول على برنامج تعليمي حول عوامل المقارنة ، اقرأ البرنامج التعليمي لمقارنات JavaScript .


عامل التشغيل الشرطي (الثلاثي)

يعين العامل الشرطي قيمة لمتغير بناءً على شرط.

Syntax Example Try it
variablename = (condition) ? value1:value2 voteable = (age < 18) ? "Too young":"Old enough";

أوضح المثال: إذا كانت قيمة المتغير "age" أقل من 18 ، فإن قيمة المتغير "قابل للتصويت" ستكون "صغيرة جدًا" ، وإلا فإن قيمة المتغير "العمر" ستكون "قديمة بدرجة كافية".


العوامل المنطقية

تُستخدم العوامل المنطقية لتحديد المنطق بين المتغيرات أو القيم.

بالنظر إلى أن x = 6 و y = 3 ، يوضح الجدول أدناه العوامل المنطقية:

Operator Description Example Try it
&& and (x < 10 && y > 1) is true
|| or (x === 5 || y === 5) is false
! not !(x === y) is true

عوامل تشغيل JavaScript Bitwise

تعمل معاملات البت على أرقام 32 بت. يتم تحويل أي معامل رقمي في العملية إلى رقم 32 بت. يتم تحويل النتيجة مرة أخرى إلى رقم JavaScript.

Operator Description Example Same as Result Decimal
& AND x = 5 & 1 0101 & 0001 0001  1
| OR x = 5 | 1 0101 | 0001 0101  5
~ NOT x = ~ 5  ~0101 1010  10
^ XOR x = 5 ^ 1 0101 ^ 0001 0100  4
<< Left shift x = 5 << 1 0101 << 1 1010  10
>> Right shift x = 5 >> 1 0101 >> 1 0010   2

تستخدم الأمثلة أعلاه 4 بت أمثلة غير موقعة. لكن JavaScript يستخدم أرقامًا موقعة 32 بت.

لهذا السبب ، في JavaScript ، لن يُرجع 5 ~ 10. سيعود -6.

~ 00000000000000000000000000000101 سيعود 111111111111111111111111111010


نوع المشغل

يُرجع عامل التشغيل typeof نوع المتغير أو الكائن أو الوظيفة أو التعبير:

مثال

typeof "John"                 // Returns string
typeof 3.14                   // Returns number
typeof NaN                    // Returns number
typeof false                  // Returns boolean
typeof [1, 2, 3, 4]           // Returns object
typeof {name:'John', age:34}  // Returns object
typeof new Date()             // Returns object
typeof function () {}         // Returns function
typeof myCar                  // Returns undefined (if myCar is not declared)
typeof null                   // Returns object

يرجى ملاحظة:

  • نوع بيانات NaN هو رقم
  • نوع بيانات المصفوفة هو كائن
  • نوع بيانات التاريخ هو كائن
  • نوع البيانات الفارغة هو كائن
  • نوع بيانات المتغير غير المحدد غير معرف

لا يمكنك استخدام typeof لتحديد ما إذا كان كائن JavaScript عبارة عن مصفوفة (أو تاريخ).


عامل الحذف

عامل الحذف يحذف خاصية من كائن:

مثال

const person = {
  firstName:"John",
  lastName:"Doe",
  age:50,
  eyeColor:"blue"
};
delete person.age;   // or delete person["age"];

عامل الحذف يحذف كلاً من قيمة الخاصية والممتلكات نفسها.

بعد الحذف ، لا يمكن استخدام الخاصية قبل إعادتها مرة أخرى.

تم تصميم عامل الحذف لاستخدامه في خصائص الكائن. ليس له تأثير على المتغيرات أو الوظائف.

ملاحظة: لا ينبغي استخدام عامل الحذف في خصائص كائن JavaScript المحددة مسبقًا. يمكن أن يؤدي إلى تعطل التطبيق الخاص بك.


عامل التشغيل

عامل التشغيل في يعيد صحيحًا إذا كانت الخاصية المحددة في الكائن المحدد ، وإلا خطأ:

مثال

// Arrays
const cars = ["Saab", "Volvo", "BMW"];
"Saab" in cars          // Returns false (specify the index number instead of value)
0 in cars               // Returns true
1 in cars               // Returns true
4 in cars               // Returns false (does not exist)
"length" in cars        // Returns true  (length is an Array property)

// Objects
const person = {firstName:"John", lastName:"Doe", age:50};
"firstName" in person   // Returns true
"age" in person         // Returns true

// Predefined objects
"PI" in Math            // Returns true
"NaN" in Number         // Returns true
"length" in String      // Returns true

مثيل المشغل

يعيد المثيل صحيحًا إذا كان الكائن المحدد مثيلًا للكائن المحدد:

مثال

const cars = ["Saab", "Volvo", "BMW"];

(cars instanceof Array)   // Returns true
(cars instanceof Object)  // Returns true
(cars instanceof String)  // Returns false
(cars instanceof Number)  // Returns false

عامل الفراغ

يقوم عامل الفراغ بتقييم تعبير وإرجاع غير معرف . غالبًا ما يستخدم هذا العامل للحصول على القيمة الأولية غير المعرفة ، باستخدام "void (0)" (مفيد عند تقييم تعبير بدون استخدام القيمة المرجعة).

مثال

<a href="#;">
  Useless link
</a>

<a href="javascript:void(document.body.style.backgroundColor='red');">
  Click me to change the background color of body to red
</a>