首页
友情链接
留言
统计
推荐
计算机网络技术视频
华为ensp视频
Linux服务器视频
Windows服务器视频
Search
1
华为ICT概述
47 阅读
2
神州数码设备命令大全
36 阅读
3
Windows server使用命令行形式安装林根级域和加入域
27 阅读
4
kali换国内源
25 阅读
5
rocky(Linux),配置DNS服务器和备用DNS服务器
23 阅读
网络技术
Windows服务器
Linux服务器
网络设备
前端
html
css
JavaScript
技能大赛
网络建设与运维
信息安全与评估
网络系统管理
实用工具
宝藏网站
登录
/
注册
Search
标签搜索
JavaScript
css
网络安全
html
宝藏网站
实用工具
网络设备
网络技术
Linux服务器
kali
网络建设与运维
windows服务器
技能大赛
公告
网络系统管理
信息安全与评估
ctf
渝
累计撰写
207
篇文章
累计收到
3
条评论
首页
栏目
网络技术
Windows服务器
Linux服务器
网络设备
前端
html
css
JavaScript
技能大赛
网络建设与运维
信息安全与评估
网络系统管理
实用工具
宝藏网站
页面
友情链接
留言
统计
推荐
计算机网络技术视频
华为ensp视频
Linux服务器视频
Windows服务器视频
搜索到
146
篇与
的结果
2024-10-04
66、函数表达式
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> // 3 + 4 // num = 10 // 1、函数表达式 let fn = function(x, y){ // console.log('我是函数表达式') console.log(x + y) } fn(1, 2) // 函数表达式和 具名函数的不同 function fn () // 1、具名函数的调用可以写在任何位置 // 2、函数表达式,必须先写表达式,后调用 function fun(){ console.log(1) } fun() </script> </body> </html>
2024年10月04日
5 阅读
0 评论
0 点赞
2024-10-04
65、变量的特殊情况
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> let num = 20 function fn(){ num = 10 //全局变量来看 //强烈不允许 } fn() console.log(num) function fun(x, y){ console.log(x) } fun(1, 2) console.log(x) //错误 </script> </body> </html>
2024年10月04日
3 阅读
0 评论
0 点赞
2024-10-04
64、作用域
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> let num = 10 console.log(num) //全局变量 function fn(){ console.log(num) } fn() // 2、局部变量 //函数变量 function fun(){ let str = 'pink' console.log(str) } fun() // 写外面会错误 </script> </body> </html>
2024年10月04日
4 阅读
0 评论
0 点赞
2024-10-04
63、函数细节
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> function getSum(x, y){ return x + y // 返回值返回给了谁?函数的调用者 getSum(1, 2) } let num = parseInt('12px') let result = getSum(1, 2) console.log(result) </script> </body> </html>
2024年10月04日
6 阅读
0 评论
0 点赞
2024-10-04
62、求最大值函数
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> // // 1、求最大值函数 // function getMax(x, y){ // return x > y ? x : y // } // let max = getMax(1111, 22332) // console.log(max) // // 2、求任意数组的最大值,并且返回 // function getArrValue(arr = []){ // // 先准备一个Max变量存放数组的第一个值 // let max = arr[0] // // (2)遍历比较 // for(let i = 1; i < arr.length; i++){ // if(max < arr[i]){ // max = arr[i] // } // } // // 3、返回值 // return max // } // let max = getArrValue([11,45,62,2,1,8]) // console.log(max) // 3、求任意数组的最大值和最小值,并且返回 function getArrValue(arr = []){ // 先准备一个Max变量存放数组的第一个值 let max = arr[0] let min = arr[0] //最小值 // (2)遍历比较 for(let i = 1; i < arr.length; i++){ // 最大值 if(max < arr[i]){ max = arr[i] } // 最小值 if(min > arr[i]){ min = arr[i] } } // 3、返回值 返回的是数组 return [max, min] } let newArr =getArrValue([11,45,62,2,1,8]) console.log(`数组的最大值是:${newArr[0]}`) console.log(`数组的最小值是:${newArr[1]}`) </script> </body> </html>
2024年10月04日
3 阅读
0 评论
0 点赞
1
...
3
4
5
...
30