JS realizes the calculation of the total price of goods in the shopping cart

JS realizes the calculation of the total price of goods in the shopping cart

JS calculates the total price of goods in the shopping cart for your reference. The specific contents are as follows

Question requirements:

There is information about several products in the shopping cart, including the name, unit price, and quantity of the products. The total price of the products in the shopping cart is calculated.

Specific ideas:

Product information is obtained by creating product objects. The sum of several products is achieved by creating an array to place the products. The price is then calculated by traversing the array and reading the specified attributes.

Specific code:

<script type="text/javascript">
 // Total price variable var sum = 0;
 // Goods object function Goods(name,price,amount){
 this.name = name;
 this.price = price;
 this.amount = amount;
 // this.add = fun();
  }
 //Define and declare a product instance var goods1 = new Goods("Pen",100,1);
 var goods2 = new Goods("paper towel",10,1);
 var goods3 = new Goods("Workbook",100,2);
  
 // Create a function to calculate the total price function totalPrice(){
 // Put objects into array var arr = new Array(goods1,goods2,goods3);
 // Add the prices of each product by traversing for(var i in arr){
  sum = sum + (arr[i].price * arr[i].amount);
  };
  console.log(sum);
 };
  
 console.log(goods1);
 console.log(goods2);
 console.log(goods3);
 totalPrice();
</script>

Running results:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • js method to realize shopping cart calculation

<<:  Detailed explanation of Linx awk introductory tutorial

>>:  Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

Recommend

Implementation of Nginx configuration https

Table of contents 1: Prepare https certificate 2:...

Quick understanding and example application of Vuex state machine

Table of contents 1. Quick understanding of conce...

XHTML Getting Started Tutorial: XHTML Hyperlinks

It is no exaggeration to say that hyperlinks conne...

js code that associates the button with the enter key

Copy code The code is as follows: <html> &l...

mysql-8.0.16 winx64 latest installation tutorial with pictures and text

I just started learning about databases recently....

How to use Vuex's auxiliary functions

Table of contents mapState mapGetters mapMutation...

Linux C log output code template sample code

Preface This article mainly introduces the releva...

This article takes you to explore NULL in MySQL

Table of contents Preface NULL in MySQL 2 NULL oc...

Implementation of element input box automatically getting focus

When making a form in a recent project, I need to...

Beginners learn some HTML tags (2)

Related article: Beginners learn some HTML tags (1...

Docker nginx + https subdomain configuration detailed tutorial

Today I happened to be helping a friend move his ...

How to build gitlab on centos6

Preface The original project was placed on the pu...

A brief discussion on the synchronization solution between MySQL and redis cache

Table of contents 1. Solution 1 (UDF) Demo Case 2...