
Javascript
CodingIsFun
function myProfile(){
let major= ['English', 'Computer Science and Technology'];
let career_goal = 'front-end development';
let motto = 'Pressing on is my only option';
}
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Vue JS Crash Course - 2019
视频教程播放地址:https://www.bilibili.com/video/BV1db41147T2安装Vue CLInpm install -g @vue/cli来自 https://cli.vuejs.org/guide/installation.htmlcheck versionvue --version使用powershell(不要使用gitbash) 执行下面的...原创 2020-05-06 22:13:07 · 336 阅读 · 0 评论 -
JavaScript编程夏令营
课程链接:http://udemy.com/learn-javascript-get-hired-bootcamp配套文件下载地址:https://github.com/15Dkatz/javascript-bootcampGitHub: https://github.com/Li-YangZhong/javascript-bootcamp-masterArrow functions ...原创 2020-04-24 22:37:29 · 259 阅读 · 0 评论 -
You Don't Know JS Yet (book series) - 2nd Edition by Kyle Simpson
You Don’t Know JS Yet (book series) - 2nd Edition全文阅读地址From https://github.com/getify/You-Dont-Know-JS我的GitHub文件: https://github.com/Li-YangZhong/Kyle_Simpson_You_Don-t_Know_JS_Yet_-Get_Started.git...原创 2020-04-21 13:20:10 · 2022 阅读 · 0 评论 -
深入理解JavaScript中的对象和原型(Objects and Prototypes In-depth)
视频链接:https://www.bilibili.com/video/BV1nt411e7P4My GitHub files: https://github.com/Li-YangZhong/Objects-and-Prototypes-In-depth原创 2020-04-12 01:31:42 · 224 阅读 · 0 评论 -
Learning JavaScript - JavaScript Essentials for Modern Application Development by Ethan Brown
Learning JavaScript JAVASCRIPT ESSENTIALS FOR MODERN APPLICATION DEVELOPMENT by Ethan BrownI certainly hold no animosity toward amateurs: everyone has to start somewhere, programming is a profitabl...原创 2020-04-11 15:30:11 · 588 阅读 · 0 评论 -
JavaScript面向对象教程(Object Oriented JavaScript Tutorial)
B站视频链接:https://www.bilibili.com/video/BV1Yt411e7RKGitHub file download link: https://github.com/iamshaunjp/object-oriented-jsMy GitHub files: https://github.com/Li-YangZhong/Object-Oriented-JavaSc...原创 2020-04-08 23:16:16 · 278 阅读 · 0 评论 -
The Advanced Web Developer Bootcamp
Udemy课程链接:https://www.udemy.com/course/the-advanced-web-developer-bootcamp/B站视频链接: https://www.bilibili.com/video/BV1T7411W7cR我的GitHub文件: https://github.com/Li-YangZhong/The-Advanced-Web-Developer...原创 2020-04-05 22:37:30 · 403 阅读 · 0 评论 -
The Modern JavaScript Bootcamp by Andrew Mead
B站视频:https://www.bilibili.com/video/av54970169GitHub Files: https://github.com/Li-YangZhong/The-Modern-JavaScript-Bootcamp-by-Andrew-Mead.gitnode -v //show version of nodeclear //clear screen...原创 2020-01-31 15:36:53 · 245 阅读 · 0 评论 -
JavaScript Basics for Beginners by Mosh Hamedani
Javascript can be run inside a brower or Node which provides a runtime environment for Javascript.ECMAScript is a specification and Javascript is a programming language that confirms to this specifi...原创 2019-10-13 01:17:03 · 866 阅读 · 0 评论 -
Javascript Programming in One Video by Mike Dane from Giraffe Academy
Exercise files uploaded tohttps://github.com/Li-YangZhong/Javascript-Programming-in-One-Video-by-Mike-Dane-from-Giraffe-Academy视频链接(不保证永久有效):https://www.bilibili.com/video/av42052671...原创 2019-10-08 07:19:42 · 456 阅读 · 0 评论 -
Javascript tutorial- Full course for beginners freecodecamp instructor Beau Carnes
scrimba.comthe character under the tilde ~ is called backtick `.Exercise files uploaded tohttps://github.com/Li-YangZhong/Javascript-Tutorial-Full-Course-for-Beginners原创 2019-09-27 06:54:07 · 269 阅读 · 0 评论 -
用Javascript显示一个电子时钟
<!DOCTYPE html><html><head> <style type="text/css" media="screen">body { background: black;}#txt { position: absolute; top: 50%; left: 50%; transf...原创 2019-01-21 15:13:33 · 2197 阅读 · 0 评论 -
Javascript代码学习01
/*列出1到100中既能被3,也能被5整除的数*/for (let n = 1; n <= 100; n++) { let output = ""; if (n % 3 == 0) output += "可以被3整除"; if (n % 5 == 0) output += "可以被5整除"; console.log(n+output);}/*输出长宽个数相等的一簇...原创 2019-01-21 14:31:16 · 428 阅读 · 0 评论 -
p5.js: 通过上下左右键控制方块的位置
<html> <head> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/p5.min.js"></script> <style> body { padding: 0;原创 2019-01-28 11:26:57 · 1343 阅读 · 0 评论 -
Learn JavaScript with p5.js: Coding for Visual Learners 书籍简介
作者:Engin Arslan阅读时间:2019-01-21至2019-01-29本书主要通过p5.js 介绍一些基本的编程知识。 使用p5.js 提供的一些函数可以很容易地绘制图形。对于初学者来说可以很直观的看到代码的显示效果,使编程学习变的有趣而简单。一些例子可以在作者网站上看到:https://www.codingforvisuallearners.com/examples...原创 2019-01-29 13:21:03 · 211 阅读 · 0 评论 -
Learn Javascript Visually 读书笔记
Imperative programming In computer science, imperative programming, as opposed to declarative programming, is a programming paradigm that describes computation in terms of a program state and state...原创 2019-03-04 14:08:03 · 463 阅读 · 0 评论 -
Javascript from Zero to Proficiency by Patrick Felicia 笔记
JavaScript also makes it possible to communicate with a server through technologies often referred as AJAX, whereby information is sent asynchronously to the server, and then processed accordingly....原创 2019-03-08 09:04:05 · 261 阅读 · 0 评论 -
《Javascript & JQuery interactive front-end web development》 by Jon Duckette 读书笔记-未完待续
There are many inconsistencies between browsers that affect JavaScript developers. jQuery will help you deal with cross-browser inconsistencies (it is one of the major reasons why jQuery rapidly gaine...原创 2019-03-18 13:19:58 · 535 阅读 · 0 评论 -
Javascript>> onmouseover用法
<!DOCTYPE html><html><head><title>Window Title</title></head><body> <p>Test your mouse on me!</p><script>const p = document.quer...原创 2019-07-22 17:30:11 · 4454 阅读 · 0 评论 -
使用p5.js绘制一个“禁止通行”标志
效果图没有上传成功:CSDN对GoogleChrome的支持还不完善啊。发现了几个bug:1. 添加个人分类标签时不能输入超过一个字符的标签2. 不能通过复制粘贴方式上传图片(2019-01-24 17:00左右测试过)<html> <head> <script type="text/javascript" src="https://cdnj...原创 2019-01-24 17:00:51 · 503 阅读 · 0 评论