Another way to write js to share

小云云
Release: 2023-03-22 20:08:01
Original
1312 people have browsed it

This article mainly shares with you another way to write js, a way to prevent duplication of method names. It mainly explains it to you with a piece of code. I hope it can help you.

 var mytest = function() {
    
    return {
        
        test1:function () {
            
            alert("this is a test1 func");
        }
        
        test2: function () {
            
            alert("this is a second func");
        }
    };
}();
Copy after login

Use mytest.test1() when calling

The above is the detailed content of Another way to write js to share. For more information, please follow other related articles on the PHP Chinese website!

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!