Appearance
第54期 48 week share 2025-11-28
本周我读到有趣的文章
TIP
使用工作流程 为异步 JavaScript 带来持久性、可靠性和可观测性。轻松构建能够暂停、恢复和维护状态的应用程序
TIP
AI Elements Vue 是一个基于 Vue 3 和 Tailwind CSS 的开源组件库,旨在简化 AI 驱动的应用程序开发
TIP
A sleek, developer-friendly file manager for Vue
4、Gridjs
TIP
Table library for JavaScript frameworks. Lightweight, advanced tables that work everywhere
5、Json Api
TIP
About Get a full fake REST API with zero coding in less than 30 seconds (seriously)
6、时间进度表
TIP
JavaScript library for HTML5 & CSS3 time sheets
7、money.js
TIP
money.js is a tiny (1kb) javascript currency conversion library, for web & nodeJS
js
var employee1 = { firstName: "John", lastName: "Rodson" };
var employee2 = { firstName: "Jimmy", lastName: "Baily" };
function invite(greeting1, greeting2) {
console.log(
greeting1 + " " + this.firstName + " " + this.lastName + ", " + greeting2
);
}
invite.apply(employee1, ["Hello", "How are you?"]); // Hello John Rodson, How are you?
invite.apply(employee2, ["Hello", "How are you?"]); // Hello Jimmy Baily, How are you?