search
HomeWeb Front-endJS TutorialHow to make JavaScript code more semantic

Semantic This word is used more often in HTML, that is, selecting appropriate tags based on the structure of the content. Its role should not be underestimated:

  • gives tags meaning and makes the code structure clearer. Although we can add class to the tag to identify it, this form of expressing the ontology through attributes will It seems not direct enough, and also redundant to a certain extent.

  • Optimize search engines (SEO). Well-structured web pages have a high affinity for search engines. Baidu and Google have also given many suggestions (standards) for structuring web pages. Make it easier for them to crawl web pages.

  • It is conducive to device analysis, such as the analysis of pages by blind readers. Currently, many Taobao web pages support reading by blind people. This optimization of experience benefits from the good structure and semantics of the web pages. expression.

  • Easy for developers to maintain. Before joining the work, many programmers were in single-person development mode. Single-person development does not matter the code structure, as long as you can understand it. That's almost it. Once you go to work, you will find that your previous bad habits are a bit stretched.

W3C Group working group continues to contribute to web specifications. Their goal is also to stabilize and unify the development trend of the entire Internet. Without further ado, let’s get back to the main point of this article: How to semantically semanticize JavaScript code?

1. First look at the JavaScript code that is difficult to read

1. Judgment

// 数据类型判断
if(Object.prototype.toString.call(str) === “[object String]”){
    // doSomething();
};

// 文件类型判断
if(/.*\.css(?=\?|$)/.test(“/path/to/main.css”)){
    // doSomething();
}

2 . Clear a queue

var Queue = ["test1", "test2", "test3"];
// 常见方式
Queue.length = 0;
Queue = [];

3. Register a variable

// 注册
var repos = {};

repos[“a”] = {
   name: “a”,
   content: {}
};

repos[“b”] = {
   name: “b”,
   content: {}
};

It’s not hard to understand the above examples, the program They are all very simple. In the first example, we use the toString method on the Object prototype chain to determine whether a variable is of string type, and use regular rules to determine whether a file is a css file. The code is relatively easy to write. What if we need to determine whether multiple objects are one of multiple types at the same time? For example, if we need to extract the require dependency from a string of code, should we think about how to organize our own code?

In the second example, setting the length of the array to 0 or using an empty array to reset this variable are very common methods, but the current scenario is to clear it A queue, can we present it in a more semantic form? For example, what if we only need to clear the first five and last three items of the queue?

In the third example, the registration of variables puts a bunch of registrations together. The above form is indeed clear at a glance. What if a b c d, etc. are separated and interspersed between hundreds of lines of code? Does the sudden appearance of repos["x"] seem a bit unintuitive?

In order to illustrate the ideas advocated in this article, the above explanations are somewhat vague and far-fetched, please read below.

2. Improve the semantics of the code

For the above three cases, use a more semantic way to present the code:

1 . Semantic variable

// 类型判断
function isType(type){
    return function(o){
        return Object.prototype.toString.call(o) === '[object ' + type + ']';
    }
}

var isString = isType(“String”);
var isObject = isType("Object");
var isArray = isType("Array");

isString("I'm Barret Lee.");
isArray([1,2,3]);
isObject({});

I don’t think it needs too much explanation. It seems much fresher compared to

if(Object.prototype.toString.call(str) === “[object String]”){
    // code here...
}

.

// 提取常量
var isCss = /.*\.css(?=\?|$)/;
isCss.test(“/path/to/main.css”);

No matter how long the regular code of isCss is, when we see the word isCss, it is as the name implies. Many people who write regular rules will not extract the regular rules separately and use a meaningful variable to store them. It is okay to add comments . If they do not add comments, subsequent developers will have to bite the bullet and understand the regular rules. To understand the meaning of the code.

Such processing actually increases the amount of code, but looking at it from an engineering perspective can help improve development efficiency and code organization.

2. Semantic behavior

var Queue = ["test1", "test2", "test3"];
Queue.splice(0, Queue.length);

The above code has strong semantics. Starting from the index 0 to the end of the queue, delete all the items in the Queue. item. This way of writing is also more scalable:

Queue.splice(2, 4); // 删除从索引为 2,往后的 4 个元素

This is just a small example. Some behaviors require a lot of code combinations. If there is no good combination of codes for the same behavior, the entire structure will appear very scattered. , not conducive to reading.

// 注册
var repos = [];

function register(o){
   repos[o.name] = o;
}

register({
  name: “a”,
  content: {}
});

Compared with our previous

repos[“a”] = {
   name: “a”,
   content: {}
};

Has the semantic level been improved~

3. Summary

Optimization of the code , there are many dimensions to consider. But code optimization is not about reducing the amount of code. Sometimes we need to add code to improve the readability of the code.

  • Mark variables correctly

  • Encapsulate an action

  • AttentionFunction## How to write

  • #If something is not easy to understand, add comments

The above is the detailed content of How to make JavaScript code more semantic. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)