Answers for "subtract() javascript"

5

javascript subtract days from date

var myCurrentDate=new Date();
var myPastDate=new Date(myCurrentDate);
    myPastDate.setDate(myPastDate.getDate() - 8);//myPastDate is now 8 days in the past
Posted by: Guest on August-01-2019
2

how to do subtraction in javascript

//To subtract in Java script, you have to put an subtraction symbol '-' between them. If you have stored two numbers in variables, just put an subtraction symbol between the variable names.
//For example:
var a = 6
var b = 5
var c = a-b
var d = 6-5

Bot.send (c)/ print (c)// or whatever you use to get output
Bot.send (d)/ print (d)// or whatever you use to get output

//output will be: 1, 1
Posted by: Guest on May-31-2021

Code answers related to "subtract() javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language