我正在尝试在CoffeeScript中更改变量值,但似乎无法做到。
这是我的代码:
myfunction: ->
first_variable = 1
if first_variable == 1
first_variable = 2
alert first_variable #alert gives me 1
但是first_variable
仍然为1。要更改值,需要进行哪些更改?
答案 0 :(得分:0)
在定义函数时有一个错误。下面的代码对我来说很好:
myfunction= ->
first_variable = 1
if first_variable == 1
first_variable = 2
alert first_variable
myFunction() #alert will give 2
有关更多信息:https://www.tutorialspoint.com/coffeescript/coffeescript_functions.htm