一等公民意味着函数可以像其他数据类型一样使用。它意味着函数可以分配给变量,作为参数传递给其他函数,并作为值返回。这是函数式编程中的一个重要概念,因为它允许我们编写更多模块化和可重用的代码。
以下是在 javascript 中使用函数作为一等公民的一些示例:
const add = function(x, y) { return x + y; } console.log(add(null, 4)); // output: 9 console.log(typeof(add)); // output: function
function greet(name, callback) { const message = "hello, " + name + "!"; callback(message); } function logmessage(message) { console.log(message); // logs "hello, nozibul!" } greet("nozibul", logmessage); // logs "hello, nozibul!"
function add(x) { return function(y) { return x + y; }; } const addfive = add(5); console.log(addfive(3)); // output: 8
function add(a, b) { return a + b; } var arr = []; arr.push(add); console.log(arr); // output: [ [function: add] ] console.log(arr[0](null, 5)); // output: 7
function add(a, b) { return a + b; } var obj = { sum: add }; console.log(obj.sum(null, 7)); // Output: 12 console.log(obj); // Output: { sum: [Function: add] }
这些示例演示了如何将 javascript 中的函数视为一等公民,从而实现强大的函数式编程范例。