🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# Creation Creating a number is easy, it can be done just like for any other variable type using the `var` keyword. Numbers can be created from a constant value: ~~~ // This is a float: var a = 1.2; // This is an integer: var b = 10; ~~~ Or from the value of another variable: ~~~ var a = 2; var b = a; ~~~ Exercise Create a variable `x` which equals `10` and create a variable `y` which equals `a`. ~~~ var a = 11; ~~~