search
HomeWeb Front-endJS TutorialLearn to properly handle variables in JavaScript
Learn to properly handle variables in JavaScriptDec 28, 2020 pm 05:34 PM
javascriptvariable

JavaScriptThe column will introduce in detail how to correctly handle variables

Learn to properly handle variables in JavaScript

Recommended ( Free): javascript (Video)

Variables are everywhere. Even if we write a small function or a gadget, we still need to declare, assign and read variables. Paying more attention to variables can improve the readability and maintainability of the code.

1. It is recommended to use const, or use let

with const or let Declare your own JavaScript variables. The main difference between the two is that const variables need to be initialized when declared, and once initialized they cannot be reassigned.

// const 需要初始化
const pi = 3.14;
// const 不能被重新赋值
pi = 4.89; 
// throws "TypeError: Assignment to constant variable"

let The declaration does not require value initialization and can be reassigned multiple times.

// let 要不要初始化随你
let result;
// let 可被重新赋值
result = 14;
result = result * 2;

const is a one-time allocation variable. Because you know that const variables will not be modified, it is easier to speculate on const variables than let.

When declaring variables, const is used first, followed by let.

Suppose you are reviewing a function and see a const result = ... Statement:

function myBigFunction(param1, param2) {
  /* 一写代码... */

  const result = otherFunction(param1);
  /* 一些代码... */
  return something;
}

Although I don’t know myBigFunction() , but we can conclude that the result variable is read-only.

In other cases, if a variable must be reassigned multiple times during code execution, use let.

2. Minimize the scope of variables

A variable is located in the scope in which it is created. Code blocks and function bodies create scopes for const and let variables.

Keeping variables in the smallest scope is a good habit to improve readability.

For example, the implementation of the following binary search algorithm:

function binarySearch(array, search) {
  let middle;  let middleItem;  let left = 0;
  let right = array.length - 1;

  while(left  true
binarySearch([2, 5, 7, 9], 1); // => false

The variables middle and middleItem are declared at the beginning of the function, so these variables are binarySearch() Available within the entire scope of the function. The variable middle is used to hold the middle index of the binary search, while the variable middleItem holds the middle search item.

But the middle and middleItem variables are only used in the while loop. So why not declare these variables directly in the while block?

function binarySearch(array, search) {
  let left = 0;
  let right = array.length - 1;

  while(left <p>Now <code>middle</code> and <code>middleItem</code> only exist within the scope where the variable is used. Their life cycles are extremely short, so it is easier to deduce their purpose. </p><p><strong>3. Easy to use</strong></p><p>I am always used to declaring all variables at the beginning of the function, especially when writing some larger functions. But doing this would make my intention of using the variable in the function very confusing. </p><p>So the variable should be declared as close as possible to the location where it is used. This way you don't have to guess: <em>Oh, the variable is declared here, but... where is it used? </em></p><p>Suppose there is a function that contains many statements. You can declare and initialize the variable <code>result</code> at the beginning of the function, but only use <code>result</code> in the <code>return</code> statement: </p><pre class="brush:php;toolbar:false">function myBigFunction(param1, param2) {
  const result = otherFunction(param1);  
  let something;

  /*
   * 一些代码...
   */

  return something + result;}

The problem isresult Variables are declared at the beginning but only used at the end. There is no good reason to declare this variable in the first place.

So in order to better understand the function and role of result variables, always declare the variable as close as possible to the location where it is used.

If you change the code to this:

function myBigFunction(param1, param2) {
  let something;

  /* 
   * 一些代码... 
   */

  const result = otherFunction(param1);  
  return something + result;}

It will be much clearer now.

4. Reasonable naming

You probably already know a lot about variable naming, so I won’t expand on it here. However, among the many naming rules, I have summarized two important principles:

The first one is very simple: use camel case naming and consistently maintain this style.

const message = 'Hello';
const isLoading = true;
let count;

An exception to this rule is certain values: such as numbers or strings with special meanings. Variables that contain specific values ​​are usually capitalized and underlined to distinguish them from regular variables:

const SECONDS_IN_MINUTE = 60;
const GRAPHQL_URI = 'http://site.com/graphql';

I think the second one is: The variable name should clearly indicate what data it is used to save. .

Here are some good examples:

let message = 'Hello';
let isLoading = true;
let count;

message The name indicates that this variable contains some kind of message, most likely a string.

isLoading is the same, it is a Boolean value used to indicate whether loading is in progress.

There is no doubt that the count variable represents a numeric type variable that contains some counting results.

Be sure to choose a variable name that clearly indicates its role.

Look at an example, suppose you see the following code:

function salary(ws, r) {
  let t = 0;
  for (w of ws) {
    t += w * r;
  }
  return t;
}

你能很容易知道函数的作用吗?与薪水的计算有关?非常不幸,我们很难看出 wsrtw这些变量名的作用。

但是如果代码是这样:

function calculateTotalSalary(weeksHours, ratePerHour) {
  let totalSalary = 0;
  for (const weekHours of weeksHours) {
    const weeklySalary = weekHours * ratePerHour;
    totalSalary += weeklySalary;
  }
  return totalSalary;
}

我们就很容易知道它们的作用,这就是合理命名的力量。

5.采用中间变量

我一般尽可能避免写注释,更喜欢写出能够自我描述的代码,通过对变量、属性、函数、类等进行合理的命名来表达代码的意图。

如果想使代码本身称为文档,一个好习惯是引入中间变量,这在在处理长表达式时很好用。

比如下面的表达式:

const sum = val1 * val2 + val3 / val4;

可以通过引入两个中间变量来提高长表达式的可读性:

const multiplication = val1 * val2;
const pision       = val3 / val4;

const sum = multiplication + pision;

再回顾一下前面的二叉搜索算法实现:

function binarySearch(array, search) {
  let left = 0;
  let right = array.length - 1;

  while(left <p>里面的 <code>middleItem</code> 就是一个中间变量,用于保存中间项。使用中间变量 <code>middleItem</code> 比直接用 <code>array[middle]</code> 更容易。</p><p>与缺少  <code>middleItem</code> 变量的函数版本进行比较:</p><pre class="brush:php;toolbar:false">function binarySearch(array, search) {
  let left = 0;
  let right = array.length - 1;

  while(left <p>没有中间变量的解释,这个版本稍微不太好理解。</p><p>通过使用中间变量<strong>用代码解释代码</strong>。中间变量可能会增加一些语句,但出于增强代码可读性的目的还是非常值得的的。</p><p><strong>总结</strong></p>
  • 变量无处不在。在 JavaScript 中使用变量时,首选 const,其次是 let
  • 尽可能缩小变量的作用域。同样,声明变量时要尽可能靠近其使用位置。
  • 合理的命名是非常重要的。要遵循以下规则:变量名称应该清楚无误地表明是用来保存哪些数据的。不要害怕使用更长的变量名:要追求清晰而不是简短。
  • 最后,最好用代码自己来解释代码。在高度复杂的地方,我更喜欢引入中间变量。

The above is the detailed content of Learn to properly handle variables in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
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

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.