How to make if judgment in js as smooth as silk

How to make if judgment in js as smooth as silk

Preface

A small requirement point in the project, click a button to verify dozens of condition boxes, determine whether all condition boxes have been filled (selected) with data (at least one condition is true) and then perform the corresponding operation

The judgment condition box includes Radio single-select box, Checkbox multiple-select box, Input input box, InputNumber counter, Select selector, Switch switch, etc.

The project uses the Element component library V2.15.6

Data types and default values ​​corresponding to different conditions

  • Radio radio button string ''
  • Checkbox multiple selection box array []
  • Input input box string ''
  • InputNumber counter number 0
  • Select
    • Single choice string ''
    • Multiple selection array []
  • Switch switch boolean false

Code Implementation

Idea 1

Use if to judge directly, and then the code is as follows (the variable is a simulation variable)

// Multi-condition judgment begins, as follows if (obj.radio1 || obj.checkbox1.length > 0 || obj.input1 || obj.inputNumber1 > 0 || obj.select1 || obj.select2.length > 0 || obj.switch1 || obj.radio2 || obj.checkbox2.length > 0 || obj.input2 || obj.inputNumber2 > 0 || obj.select3 || obj.select4.length > 0 || obj.switch2 ...) {
  // do something
} else {
  // If the condition is not met, prompt this.$message({
    message: 'Please select the conditions and try again',
    type: 'warning'
  })
  return false
} 

In actual project scenarios, variable names have many semantic characters. If you only write a few ifs, you will end up writing a long string. Then you can’t write anymore after writing a few (it feels like you are writing a bunch of shit).

Can it be achieved in a more elegant way?

Idea 2

Put the variables to be judged into an array, use map to process them into Boolean type, and use includes to determine whether the array contains the specified Boolean value.

//Multi-condition judgment begins, as follows const arr = [
  obj.radio1,
  obj.checkbox1.length,
  obj.input1,
  obj.inputNumber1,
  obj.select1,
  obj.select2.length,
  obj.switch1,
  obj.radio2,
  obj.checkbox2.length,
  obj.input2,
  obj.inputNumber2,
  obj.select3,
  obj.select4.length,
  obj.switch2 
  ...
]

const arr1 = arr.map(item => Boolean(item))
if (arr1.includes(true)) {
  // do something
} else {
  // If the condition is not met, prompt this.$message({
    message: 'Please select the conditions and try again',
    type: 'warning'
  })
  return false
} 

Well, if we use this method to handle a large number of judgments, it will be smoother. ^-^

Summarize

This is the end of this article on how to make the if judgment in js as smooth as silk. For more relevant content about if judgment in js, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

Reference Documentation

  • developer.mozilla.org/zh-CN/docs/…
  • developer.mozilla.org/zh-CN/docs/…
  • developer.mozilla.org/zh-CN/docs/…
You may also be interested in:
  • Summary of how JS operates on pages inside and outside Iframe
  • Implementation of a simplified version of JSON.stringify and its six major features explained in detail
  • Summary of various uses of JSON.stringify
  • Vue implements online preview of PDF files (using pdf.js/iframe/embed)
  • Summary of JavaScript JSON.stringify() usage
  • Detailed explanation of how to solve the circular reference problem encountered when using JSON.stringify
  • The difference and use of json.stringify() and json.parse()
  • Selenium+BeautifulSoup+json gets the json data in the Script tag
  • About if contains comma expression in JavaScript

<<:  HTML form tag tutorial (1):

>>:  Docker container time zone adjustment operation

Recommend

JavaScript Canvas implements Tic-Tac-Toe game

This article shares the specific code of JavaScri...

HTML is something that web page creators must learn and master.

What are the benefits of learning HTML? 1: Easily...

How to avoid data loop conflicts when MySQL is configured with dual masters

I wonder if you have ever thought about this ques...

N ways to align the last row of lists in CSS flex layout to the left (summary)

I would like to quote an article by Zhang Xinxu a...

Use of Linux usermod command

1. Command Introduction The usermod (user modify)...

Examples of using the or statement in MySQL

1. The use of or syntax in MySQL, and the points ...

MySQL DML language operation example

Additional explanation, foreign keys: Do not use ...

MySQL 5.7.17 installation and configuration method graphic tutorial

This article shares the installation and configur...

Detailed explanation of the TARGET attribute of the HTML hyperlink tag A

The hyperlink <a> tag represents a link poin...

17 JavaScript One-Liners

Table of contents 1. DOM & BOM related 1. Che...

Example of implementing GitHub's third-party authorization method in Vue

Table of contents Creating OAuth Apps Get the cod...

What are the differences between xHTML and HTML tags?

All tags must be lowercase In XHTML, all tags must...

A brief discussion on React native APP updates

Table of contents App Update Process Rough flow c...

Detailed explanation of the installation steps of the MySQL decompressed version

1. Go to the official website: D:\mysql-5.7.21-wi...