How to make a variable double value?

I want to do something like the variable++ command but instead double the variable, how do I do that?

var v = 1;

v *= 2;