JavaScript基础笔记
我很早学过,只是当时没有系统记录笔记,导致过一段时就容易忘记很多东西。本笔记主要参考JavaScript 基础-千古前端图文教程,mdn web docs - JavaScript Web 前端有三层: HTML:从语义的角度,描述页面结构 CSS:从审美的角度,描述样式(美化页面) JavaScript(简称 JS):从交互的角度,描述行为(实现业务逻辑和页面控制) DateDate() constructorThe Date() constructor can create a Date instance or return a string representing the current time. const date1 = new Date() getFullYear()The getFullYear() method returns the year of the specified date according to local time. 12const birthday = new Date('August 9, 2000 00:00:00 ...
控制台输出字符画-程序员的浪漫
不知道友友们逛 B 站时有没有注意到它控制台输出的字符画(正经人逛 B 站谁会按 F12),看完我瞬间嘴角上扬数秒。字符画如彩蛋般的出现在眼前,还能丰富网站的维度,一个优秀的网站也许在某个不起眼的角落也能带给你惊喜。 食用教程前,建议先看一下《教程&笔记常量申明》,且所有修改对缩进格式等有严格要求。 话不多说,let's get started! 教程 - Butterfly Blog 该章节针对 Butterfly 主题博客 新建 JS 文件<Custom>.js,代码模板如下,懂 JS 的友友可以自定义改。 12345678910111213if (window.console) { Function.prototype.makeMulti = function () { let l = new String(this); l = l.substring(l.indexOf("/*") + 3, l.lastIndexOf("*/")); return l; ...