Home Web Front-end JS Tutorial js Instructions for using = and = date functions (assignment operator)_javascript skills

js Instructions for using = and = date functions (assignment operator)_javascript skills

May 16, 2016 pm 05:59 PM
assignment operator

var s= newDate();
The explanation is as follows: = does not exist;
new Date() is a thing;
is equivalent to .valueOf();
I will add .getTime after seeing the reply. ()This also gets the number of milliseconds

Copy code The code is as follows:

//4 results The same returns the number of milliseconds of the current time
alert( new Date());
alert( new Date);
var s=new Date();
alert(s.valueOf());
alert(s.getTime());

Comes with js for various usages of getting time:
http://www.jb51.net/article/28910. htm

Copy code The code is as follows:

var myDate = new Date ();
var a=myDate.toLocaleString( );
2011-11-07 18:13:56

By the way, another usage of valueOf:

The valueOf() method returns the original value of the Boolean object.

If the object on which this method is called is not a Boolean, a TypeError exception is thrown.
Copy code The code is as follows:

var boo = new Boolean(false);
document.write(boo.valueOf());

Other usage:http://www.jb51.net/w3school/js/jsref_valueof_math.htm
Statement of this Website
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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What does '+=' mean in python What does '+=' mean in python Jan 05, 2023 pm 05:53 PM

In Python, "+=" refers to the "addition assignment" operator, which is a type of assignment operator. Its function is to perform an addition operation first, and then assign the result to the variable on the left side of the operator; the syntax is "x += y", the equivalent form is "x = x + y". The "+=" operator can only assign values ​​to existing variables, because the variable itself needs to participate in the operation during the assignment process. If the variable is not defined in advance, its value is unknown and cannot participate in the operation.

Python Operators: The Ultimate Guide from Newbie to Master Python Operators: The Ultimate Guide from Newbie to Master Mar 11, 2024 am 09:13 AM

Introduction to python operators Operators are special symbols or keywords used to perform operations between two or more operands. Python provides a variety of operators covering a wide range of uses, from basic mathematical operations to complex data manipulation. Mathematical operators Mathematical operators are used to perform common mathematical operations. They include: operator operation examples + addition a + b - subtraction a-b * multiplication a * b / division a / b % modulo operation (take the remainder) a % b ** power operation a ** b // integer division (discard the remainder) a//b Logical Operators Logical operators are used to concatenate Boolean values ​​and evaluate conditions. They include: operator operations examples and logical and aandbor logical or aorbnot logical not nota comparison operations

Uncovering the Power of Python Operators: Writing Elegant and Efficient Code Uncovering the Power of Python Operators: Writing Elegant and Efficient Code Mar 11, 2024 am 09:28 AM

Python operators are a key component of the programming language, enabling developers to perform a wide range of operations, from simple arithmetic to complex bit manipulation. Mastering the syntax, semantics, and functionality of operators is essential to using Python effectively. Arithmetic Operators Arithmetic operators are used to perform basic arithmetic operations. They include addition (+), subtraction (-), multiplication (*), division (/), modulo (%), exponentiation (**), and floor division (//). The following example demonstrates the use of arithmetic operators: >>a=10>>b=5#Addition c=a+bprint(c)#Output: 15#Subtraction c=a-bprint(c)#Output: 5#Multiplication c=a*bprint(c)#output

The Secret Garden of Operators: Discover Hidden Treasures in Python The Secret Garden of Operators: Discover Hidden Treasures in Python Mar 11, 2024 am 09:13 AM

The Secret Garden of Operators Python operators are symbols or keywords used to perform various operations. They enable developers to express complex logic concisely and clearly and improve code efficiency. Python provides a wide range of operator types, each with its specific purpose and usage. Logical Operators Logical operators are used to combine Boolean values ​​and perform logical operations. The main ones are: and: Returns the Boolean value True, if all operands are True, otherwise it returns False. or: Returns a Boolean value True if any operand is True, otherwise returns False. not: Negate the Boolean value, change True to False, and change False to True. Demo code: x=Truey

Secrets of Python Operators: Mastering the Cornerstone of Programming Secrets of Python Operators: Mastering the Cornerstone of Programming Mar 11, 2024 am 09:19 AM

Python operators are special symbols or words used to perform specific operations on values ​​or to combine values. They are the fundamental building blocks of programming languages ​​and are key to understanding and writing efficient code. Arithmetic Operators Arithmetic operators are used to perform basic mathematical operations such as addition, subtraction, multiplication, division, and remainder. The following are the most commonly used arithmetic operators: +Addition-Subtraction*Multiplication/Division%Remainder Example: x=10y=5print(x+y)#Output: 15print(x-y)#Output: 5print(x*y)#Output :50print(x/y)#Output: 2.0print(x%y)#Output: 0 Comparison Operator The comparison operator is used to compare two values ​​and return a Boolean value (True

Explain the concepts of logical operators and assignment operators in C language Explain the concepts of logical operators and assignment operators in C language Sep 13, 2023 pm 06:17 PM

First, let's learn about logical operators. Logical Operators These are used to logically combine two (or more) expressions. They are logical AND (&&), logical OR (||) and logical NOT (!) logical AND (&&) exp1exp2exp1&&exp2TTTTFFFTFFFF logical OR (||) exp1exp2exp1||exp2TTTTFTFTTFFF logical NOT (!) exp!expTTFT Operator Description Example a= 10,b=20,c=30 output&&logical AND(a>b)&&(a<c)(10>

C program to calculate amount with tax using assignment operator C program to calculate amount with tax using assignment operator Aug 26, 2023 pm 01:53 PM

Question Write a C program that enters a dollar amount and then adds 18% tax to display the amount. Solution Let's consider the restaurant staff adding an 18% tax to each customer's bill. The logic used to calculate the tax is -value=(money+(money*0.18)); the amount should be multiplied by 18% and added to the money, then the restaurant staff can receive the amount including tax from the customer. Example Live demonstration #include<stdio.h>intmain(){ floatmoney,value; printf("en

What does php module equal mean? What does php module equal mean? Feb 02, 2023 pm 07:27 PM

PHP modular equals refers to "%=", which is an extended assignment operator, which means to perform the modulo operation first, and then assign the result to the variable on the left side of the operator; the syntax is "x %= y", the equivalent form is "x = x % y". The extended assignment operator combines = with other operators (including arithmetic operators, bitwise operators and logical operators) to expand it into a more powerful assignment operator; the expanded assignment operator will make the assignment expression Writing is more elegant and convenient.

See all articles