Home > Web Front-end > JS Tutorial > body text

Javascript cannot release memory._javascript tips

WBOY
Release: 2016-05-16 19:26:28
Original
905 people have browsed it

Javascript does not provide absolute control over the use of memory. Therefore, javascript cannot be used to release memory.

I encountered such a situation. When creating an array, we have no way to delete the array and let the data be re-established. Javascript only provides Use the Delete method to clear the variable to empty.

For example:

Var OA=new Array("Hello","Good","Yes")

Delete OA[ 1]

This only sets the value of OA[1] to a null value. That is, the result of OA[1] is undefined.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!