SoFunction
Updated on 2025-04-03

7 small details to pay attention to when writing javascript code

1. Simplify the code
It is very simple to define objects and arrays in JavaScript. We want to create an object, which is generally written like this:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var car = new Object();
= 'red';
= 4;
= 'spinning';
= 4;
</SPAN>

The following writing method can achieve the same effect:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var car = {
colour:'red',
wheels:4,
hubcaps:'spinning',
age:4
}
</SPAN>

The following is much shorter, and you don't need to repeat the object name.
In addition, there is also a concise way to write arrays. In the past, we declared that arrays were written like this:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var moviesThatNeedBetterWriters = new Array(
'Transformers','Transformers2','Avatar','Indiana Jones 4'
);
</SPAN>

A more concise way of writing is:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var moviesThatNeedBetterWriters = [
'Transformers','Transformers2','Avatar','Indiana Jones 4'
];
</SPAN>

For arrays, there is also a special thing like associated with arrays. You will find that a lot of code defines objects like this:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var car = new Array();
car['colour'] = 'red';
car['wheels'] = 4;
car['hubcaps'] = 'spinning';
car['age'] = 4;
</SPAN>

This is crazy, don't be confused, "association array" is just an alias for the object.
Another way to simplify the code is to use the ternary operator, for example:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var direction;
if(x < 200){
direction = 1;
} else {
direction = -1;
}
</SPAN>

We can replace this writing method with the following code:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var direction = x < 200 ? 1 : -1;
</SPAN>

2. Use JSON as data format
The great Douglas Crockford invented the JSON data format to store data, you can use native javascript methods to store complex data without any additional conversions, for example:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var band = {
"name":"The Red Hot Chili Peppers",
"members":[
{
"name":"Anthony Kiedis",
"role":"lead vocals"
},
{
"name":"Michael 'Flea' Balzary",
"role":"bass guitar, trumpet, backing vocals"
},
{
"name":"Chad Smith",
"role":"drums,percussion"
},
{
"name":"John Frusciante",
"role":"Lead Guitar"
}
],
"year":"2009"
}
</SPAN>

You can use JSON directly in JavaScript, or even as a format returned by APIs, and are applied in many APIs, for example:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva"><div ></div><script>
function delicious(o){
var out = '<ul>';
for(var i=0;i<;i++){
out += '<li><a href="' + o[i].u + '">' +
o[i].d + '</a></li>';
}
out += '</ul>';
('delicious').innerHTML = out;
}
</script>
<script src="/v2/json/codepo8/javascript?count=15&callback=delicious"></script>
</SPAN>

Here, call the web service that is delicious to get the latest bookmarks, return them in JSON format, and then display them in an unordered list.
Essentially, JSON is the lightest way to describe complex data, and it runs directly in the browser. You can even use it by calling the json_decode() function in PHP.
3. Try to use javascript native functions
To find the largest number in a set of numbers, we might write a loop, for example:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var numbers = [3,342,23,22,124];
var max = 0;
for(var i=0;i<;i++){
if(numbers[i] > max){
max = numbers[i];
}
}
alert(max);
</SPAN>

In fact, the same function can be achieved without looping:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var numbers = [3,342,23,22,124];
(function(a,b){return b - a});
alert(numbers[0]);
</SPAN>

The simplest way to write it is:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">(12,123,3,2,433,4); // returns 433
</SPAN>

You can even use to detect which attribute the browser supports:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var scrollTop= (
,

);
</SPAN>

If you want to add class style to an element, the original writing might look like this:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">function addclass(elm,newclass){
var c = ;
= (c === '') ? newclass : c+' '+newclass;
}
</SPAN>

And the more elegant way of writing is:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">function addclass(elm,newclass){
var classes = (' ');
(newclass);
= (' ');
}
</SPAN>

4. Event delegation
Events are a very important part of JavaScript. We want to bind click events to a link in a list. The general approach is to write a loop to bind events to each link object. The HTML code is as follows:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva"><h2>Great Web resources</h2>
<ul >
<li><a href="/wsc">Opera Web Standards Curriculum</a></li>
<li><a href="">Sitepoint</a></li>
<li><a href="">A List Apart</a></li>
<li><a href="">YUI Blog</a></li>
<li><a href="">Blame it on the voices</a></li>
<li><a href="">Oddly specific</a></li>
</ul>
</SPAN>

The script is as follows:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">// Classic event handling example
(function(){
var resources = ('resources');
var links = ('a');
var all = ;
for(var i=0;i<all;i++){
// Attach a listener to each link
links[i].addEventListener('click',handler,false);
};
function handler(e){
var x = ; // Get the link that was clicked
alert(x);
();
};
})();
</SPAN>

A more reasonable way to write it is to only bind events to the parent object of the list, the code is as follows:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">(function(){
var resources = ('resources');
('click',handler,false);
function handler(e){
var x = ; // get the link tha
if(() === 'a'){
alert('Event delegation:' + x);
();
}
};
})();
</SPAN>

5. Anonymous functions
One of the most troublesome things about JavaScript is that its variables have no specific scope of action. Generally, any variable, function, array, or object is global, which means that other scripts on the same page can access and overwrite them. The solution is to encapsulate the variables in an anonymous function. For example, the following definition will produce three global variables and two global functions:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var name = 'Chris';
var age = '34';
var status = 'single';
function createMember(){
// [...]
}
function getMemberDetails(){
// [...]
}
</SPAN>

After packaging, it is as follows:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var myApplication = function(){
var name = 'Chris';
var age = '34';
var status = 'single';
return{
createMember:function(){
// [...]
},
getMemberDetails:function(){
// [...]
}
}
}();
// () and
// () now works.
</SPAN>

This is called the monolithic pattern, and is a JavaScript design pattern. This pattern is used a lot in YUI. The improved writing method is:
Copy the codeThe code is as follows:

<SPAN style="FONT-FAMILY: verdana, geneva">var myApplication = function(){
var name = 'Chris';
var age = '34';
var status = 'single';
function createMember(){
// [...]
}
function getMemberDetails(){
// [...]
}
return{
create:createMember,
get:getMemberDetails
}
}();
//() and () now work.
</SPAN>

6. The code is configurable
If the code you write wants to make it easier for others to use or modify, it needs to be configurable. The solution is to add a configuration object to the script you write. The key points are as follows:
1. Add a new object called configuration to your script.
2. Store all things that other people may want to change in the configuration object, such as the CSS ID, class name, language, etc.
3. Return this object as a public property so that others can rewrite it.
7. Code Compatibility
Compatibility is a part that beginners are likely to ignore. Usually, when learning Javascript, they are tested in a fixed browser, and this browser is likely to be IE, which is very fatal, because among the major mainstream browsers, IE has the worst support for standards. The result that end users see is that the code you wrote does not run correctly in a browser. You should test your code in mainstream browsers, which may be time-consuming, but you should do it.