首页 > 其他分享 >learn to js

learn to js

时间:2023-03-25 18:15:39浏览次数:38  
标签:help JavaScript js course video learn advanced

Certainly! Here are some book and video recommendations to help you learn JavaScript:

"JavaScript: The Good Parts" by Douglas Crockford - This book is a classic and is widely regarded as one of the best books to learn JavaScript. It covers the most important parts of the language and teaches you how to write efficient and effective code.

"Eloquent JavaScript" by Marijn Haverbeke - This is another popular book for learning JavaScript. It starts with the basics and gradually progresses to more advanced topics.

"You Don't Know JS" by Kyle Simpson - This is a series of six books that cover different aspects of JavaScript, from the fundamentals to advanced concepts like asynchronous programming and metaprogramming.

"JavaScript30" by Wes Bos - This is a free video course that teaches you how to build 30 different projects using JavaScript. It's a great way to learn by doing and to get hands-on experience with the language.

"JavaScript: Understanding the Weird Parts" by Anthony Alicea - This is a popular video course that dives deep into the intricacies of JavaScript. It covers some of the more advanced and unusual features of the language and can help you become a more confident and skilled JavaScript developer.

I hope these recommendations help you on your JavaScript learning journey!

Sure! Here are the links to the video resources I mentioned:

"JavaScript30" by Wes Bos - https://javascript30.com/
"JavaScript: Understanding the Weird Parts" by Anthony Alicea - https://www.udemy.com/course/understand-javascript/
Note that the books are available for purchase on various online bookstores like Amazon, Barnes & Noble, etc.

标签:help,JavaScript,js,course,video,learn,advanced
From: https://www.cnblogs.com/p136f/p/17255255.html

相关文章

  • JS模块化写法(转)
    JS模块化写法(转)   一、原始写法模块就是实现特定功能的一组方法。只要把不同的函数(以及记录状态的变量)简单地放在一起,就算是一个模块。functionm1(){......
  • [FastAPI-24]jsonable_encoder 序列化
    importtypingimportjsonfromfastapiimportFastAPI,Responsefromfastapi.encodersimportjsonable_encoderfromdatetimeimportdatetimefrompydanticimpor......
  • JSTL——JSP标准标签库
          ......
  • Cesium 与 Babylon.js 可视化 glsl 特效篇(十八)
    我决定不从Babylonjs基础来讲了直接整合cesium与babylonjs可视化来讲我整合一个类库后续不断更新中npmi@haibalai/cesium-babylonjs初始化cesium-babylonjs类库,map......
  • c#读取json文件配置内容并转为list
    1、读取json文件内容//调用方法读取json文件内容List<UsBhpItem>bhpItems=UsServiceAdd.Us_BHP_GetConfig();publicclassUsBhpItem{///<su......
  • npm安装依赖环境报错(vite、@vitejs/plugin-legacy等)
    一、问题:在做vite +vue3项目,由于前端页面加载过慢,处理vite相关优化时安装相关插件提示的报错信息,在这里记录是方便遇到同样问题的小伙伴能快速解决问题。二、原因......
  • 初识跨域、CORS跨域资源共享、JSONP
    初识跨域跨域是什么什么是不同域,什么是同域https(协议)://www.imooc.com(域名):443(端口号)/course/list(路径)协议、域名、端口号,......
  • js中的按值和按引用
    先定义两种数据类型组合1.简单类型:包含数值,boolen,string等2.复杂类型:包含对象(object),数组等对于给函数传递参数1为按值传递2为传递共享引用(与按引用传递不同)对于赋......
  • RequireJS shim 用法说明
    RequireJSshim用法说明 原创qq5bea0820532e02021-06-0313:56:27©著作权文章标签数据库mysqloraclesqlserver文章分类MySQL数据库阅读数419​ ​https://......
  • 快速掌握 机器学习(Machine Learning) 常用概念术语,常用算法
    1、什么是机器学习?机器学习的概念:传统上如果我们想让计算机工作,我们给它一串指令,然后它遵照这个指令一步步执行下去。有因有果,非常明确。这样的方式计算机是无法执行固定流......