5 basic reference type

Basic reference type Date date is saved as the number of milliseconds since zero o'clock on January 1, 1970 UTC. Date. The parse () method receives a string parameter representing the date and attempts to convert the string to the number of milliseconds representing the date. All implementations must support the following formats M ...

Posted by majik-sheff on Tue, 04 Jan 2022 22:23:28 +0100

Reading notes of JavaScript advanced programming - 8.3 inheritance

8.3 succession 8.3.1 prototype chain Many object-oriented languages support two kinds of inheritance: interface inheritance and implementation inheritance. The former only inherits the method signature, while the latter inherits the actual method. Interface inheritance is not possible in ECMAScript because the function is not signed. Implemen ...

Posted by TJMAudio on Tue, 04 Jan 2022 21:47:14 +0100

this binding in JavaScript - springboot actual e-commerce project mall4j

springboot e-commerce project mall4j( https://gitee.com/gz-yami/mall4j)java mall system source codethis binding in JavaScriptIn daily development, we often use a keyword in javascript: this. In common programming languages, there is almost this keyword, but this in JavaScript is different from this in common languages,In the common language (ja ...

Posted by edsmith on Tue, 04 Jan 2022 18:23:51 +0100

How to solve the problem of vuex page refresh data loss?

1. Problem Description: Generally, when the login is successful, the user information and menu information need to be placed in vuex as global shared data. However, when the page is refreshed, the data in vuex will be reinitialized, resulting in data loss. Because the data in vuex is saved in the running memory, when the page is refreshed, the ...

Posted by Rithotyn on Tue, 04 Jan 2022 17:59:51 +0100

Getting to know webpack packaging

Getting to know webpack for the first time and getting started with Xiaobai preface: webpack is a node based build tool, and one of its features is packaging Because the front-end has been developed in engineering, the code written can no longer run directly on the browser At this time, webpack will help you compile the code and packag ...

Posted by samba_bal on Tue, 04 Jan 2022 17:53:30 +0100

[front end Engineering] I've written ten thousand words to get you started quickly

Hello, I'm A bowl week , a front end that doesn't want to be drunk. If you are lucky enough to get your favor, I am very lucky~ Write in front Webpack is a modern packaging modular JavaScript tool. In webpack, all files are modules. Internally, the files are converted through Loader, the hooks are injected through Plugin, and finally the fi ...

Posted by goochy808 on Tue, 04 Jan 2022 15:47:36 +0100

Performance improvement practice of developing app using apiccloud

1, Why this question?First of all, I am a front-end developer. The development methods I have used include apiccloud, native development and self mixed packaging development. These are developed in different ways according to different business needs. Some only need Android development, some need Android and iOS development, and some need h5 an ...

Posted by php_jord on Tue, 04 Jan 2022 13:11:54 +0100

JavaScript WebGL using pictures

IntroductionJavaScript WebGL setting colors The effect is always limited. At this time, you will think of using pictures, which involves the use of textures in WebGL, which is much more troublesome than expected.OriginMy GitHubUse picturesTexture can be used to add details of simulated objects. Textures are used for various simulated objects in ...

Posted by Cereals on Tue, 04 Jan 2022 11:24:01 +0100

Based on node JS build express application to realize simple Web server function. It is recommended to collect

1, express Foundation 1. Introduction to express Express is a flexible node that maintains a minimum size JS Web application development framework provides a set of powerful functions for Web and mobile applications.Express provides streamlined basic Web application functionality without hiding node JS.Many popular development frameworks ...

Posted by Amanda1998 on Tue, 04 Jan 2022 10:40:29 +0100

JavaScrip sorting and common methods

JavaScript 1. What is JavaScript It is used for simple logic of front-end pages and interaction with back-end pages JavaScript (JS for short) is a lightweight, interpretive or just in time compiler with function priority programing language . Although it is developed as Web Page scripting language It is famous, but it has also bee ...

Posted by ranjuvs on Tue, 04 Jan 2022 10:39:16 +0100