In JAVASCRIPT can each number from one variable be copied and transferred to another variable? for example:
var number = 2456;
Can you copy numbers from this variable (2, 4, 5 and 6) and each of them place in a new variable?
for example:
var a = 2;
var b = 4;
var c = 5;
var d = 6;
2456is a single number. Numbers are represented as base 2 floating-point values. You can of course use the/and%operators to extract decimal digits from the value.