Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to execute the function immediately by JavaScript

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces JavaScript how to execute the function immediately, the article is very detailed, has a certain reference value, interested friends must read it!

Execute the function immediately

Execute the function immediately so that the variables in our code do not pollute external variables, which are commonly used like the following.

/ / use parentheses to enclose the function call (function (window, $) {/ / internal code}) (window, jQuery)

A more elegant way is the following, in fact, many other arithmetic operators such as +, -, *, ~, etc.

! Function (window, $) {/ / internal code} (window, jQuery) / / you can also use +, -, *, etc. + function (window, $) {/ / internal code} (window, jQuery) / / more miraculously, you can also use new, typeof and other operators new function (window, $) {/ / internal code} (window, jQuery) These are all the contents of the article "how to execute functions immediately by JavaScript". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report