Appearance
导入
导入 Lodadh.js 。
// ==UserScript==
// @name 使用 Lodash
// @namespace Monkey
// @version 0.1
// @description 使用 Lodash
// @author 白马
// @run-at document-end
// @match *
// @require https://cdn.jsdelivr.net/npm/lodash@4.17.23/lodash.min.js
// ==/UserScript==
(function() {
'use strict';
const numbers = [1, 2, 3, 4, 5];
const sum = _.sum(numbers);
window.alert(sum);
})();