For some reason we need to use BTC test coins, but how to set up the Bitcoin testnet wallet and get the test coin? Now here we go. Set up Testnet mode wallet In this guide we use Electrum wallet which is a BTC PC wallet to set up the testnet mode.…
javascript基础05 1.变量的作用域 变量既可以是全局,也可以是局部的. 全局变量:可以在脚本中的任何位置被引用,一旦你在某个脚本里声明了全局变量,你就可以 在这个脚本的任何位置(包括函数内部)引用它,全局变量的作用域是整个脚本; 局部变量:只存在于对它做出声明的函数内部,在函数的外部无法相用它,局部变量的作用域 仅限于函数内部; function square(num){ var total; total = num * num; return total; } var total…