Lesson 23
Divide
Divide 2 values.
const position = new Animated.Value(100);
const cutIt = new Animated.Value(50);
const positionWithOffset = Animated.divide(position, cutIt);
// value = 2;
Divide 2 values.
const position = new Animated.Value(100);
const cutIt = new Animated.Value(50);
const positionWithOffset = Animated.divide(position, cutIt);
// value = 2;