摘要: ## 一个非常完美的函数式编程 const user = 'steven thomas willians'; const username = user .toLowerCase() .split(' ') .map(function (name) { return name[0]; }) .joi 阅读全文
posted @ 2024-01-16 22:36 continentliang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 关于闭包 1.chatgpt的详细说明,我觉得已经很充分了 function 外部函数() { // 外部函数作用域中定义的变量 let 外部变量 = 10; // 内部函数(闭包)在外部函数内部定义 function 内部函数() { // 访问外部函数作用域中的变量 console.log(外部 阅读全文
posted @ 2024-01-12 20:05 continentliang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 当涉及到前端领域的成功人士,有许多杰出的开发者可以作为学习榜样。以下是一些在前端领域有所成就的人士,他们在社区中广受尊敬并有着丰富的经验和知识: Dan Abramov:React 的核心开发者之一,他的技术博客和社交媒体上的分享非常受欢迎。 Sarah Drasner:她是 Vue.js 的倡导者 阅读全文
posted @ 2023-12-18 21:58 continentliang 阅读(29) 评论(0) 推荐(0) 编辑
摘要: https://www.tokyodev.com/ 阅读全文
posted @ 2023-12-10 19:12 continentliang 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ## css常见框架 bootstrap https://get.foundation/ https://purecss.io/ https://tailwindcss.com/ https://getuikit.com/ https://andybrewer.github.io/mvp/ ## 前 阅读全文
posted @ 2023-12-10 19:06 continentliang 阅读(2) 评论(0) 推荐(0) 编辑
摘要: option+command+i 开发者模式 mac 复制粘贴文件绝对路径快捷方式:把文件拖进终端 阅读全文
posted @ 2023-11-10 13:34 continentliang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 0.快捷键等... sudo npm run dev //超级管理员身份 run 调整代码上下位置:option+上箭头 command + k:清除terminal command shift +:放大 command shift -:缩小 command + b:隐藏左侧菜单 alt: 光标修改 阅读全文
posted @ 2023-11-10 12:06 continentliang 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ## Mac 隐藏or显示扩展名 -> 点击文件右键 -简介 -> 点击名称与扩展名 即可更改 ## Mac 如何看.class文件的内容 -> terminal -> cd ~/path -> javap -c ClassName *like Java -c HelloWorld ## Mac t 阅读全文
posted @ 2023-11-10 10:30 continentliang 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Assignment 3.3Write a program to prompt for a score between 0.0 and 1.0. If the score is out of range, print an error. If the score is between 0.0 and 阅读全文
posted @ 2022-09-04 21:31 continentliang 阅读(18) 评论(0) 推荐(0) 编辑
摘要: **3.1 Conditional Execution** ProblemWrite a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay the hourly r 阅读全文
posted @ 2022-09-04 19:26 continentliang 阅读(12) 评论(0) 推荐(0) 编辑