JavaScript spec...LOGIN

JavaScript special operators and operator precedence

Special operators

  • new operator: Create an object. For example: var today = new Date(); //Create a current system date and time object

  • delete operator: delete elements of the array or attributes of the object.

  • typeof operator: unary operator, main function: determine the type of variable. For example: typeof name or typeof(name)

  • Dot operator (.): Mainly used in objects, using dot operator (.) to call properties or methods. For example: window.alert(“OK”)

  • [ ] Square brackets: mainly used to access array elements. For example: arr[0] = 100; //Find the array element with subscript 0 and reassign it


Operator precedence

1.png

##Note: In actual use, if you can’t tell the priority Level, just use the knowledge we learned in elementary school. If you want to calculate which one should be calculated first, just add parentheses to wrap it up. It is simple and crude, and the effect is good


Next Section

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script type="text/javascript"> //在当前窗口弹出以一个对话框 document.write("欢迎大家学习我们的JavaScript课程,一分耕耘一分收获,希望大家多多练习代码"); </script> </head> <body> </body> </html>
submitReset Code
ChapterCourseware