⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 8-1.js

📁 js 全的样例代码,比较适合大家学习和交流
💻 JS
字号:
// Define the constructor. // Note how it initializes the object referred to by "this".function Rectangle(w, h){    this.width = w;    this.height = h;}// Invoke the constructor to create two rectangle objects.// Notice that we pass the width and height to the constructor, so it// can initialize each new object appropriately.var rect1 = new Rectangle(2, 4);var rect2 = new Rectangle(8.5, 11);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -