Ask Your Question
1

In Apps Script, what is the process for dividing a variable by a number?

asked 2023-06-30 08:13:03 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-30 08:29:02 +0000

huitzilopochtli gravatar image

To divide a variable by a number in Apps Script, you can use the '/' operator. For example, to divide the variable 'num' by 2, you can write:

var num = 10;
var result = num / 2;

In this case, the value of 'result' would be 5, which is the result of dividing 10 by 2.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-30 08:13:03 +0000

Seen: 13 times

Last updated: Jun 30 '23