⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 7-1.txt

📁 Javascript语言开发经典教程开发
💻 TXT
字号:
// A short-cut function, sometimes useful instead of document.write()// This function has no return statement, so it returns no value.function print(msg){    document.write(msg, "<BR>");}// A function that computes and returns the distance between two pointsfunction distance(x1, y1, x2, y2){    var dx = x2 - x1;    var dy = y2 - y1;    return Math.sqrt(dx*dx + dy*dy);}// A recursive function (one that calls itself) that computes factorials// Recall that x! is the product of x and all positive integers less than it.function factorial(x){    if (x <= 1)        return 1;    return x * factorial(x-1);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -