From e4a4b15c1fe6b3989dc6cdfa0c0581fc6ce2b8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E9=9D=92=E5=87=A4?= <2658978250@qq.com> Date: Tue, 14 Feb 2023 09:20:24 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=E6=96=B0=E5=BB=BA=20=E6=9B=BE=E9=9D=92?= =?UTF-8?q?=E5=87=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\346\233\276\351\235\222\345\207\244/.keep" | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 "\346\233\276\351\235\222\345\207\244/.keep" diff --git "a/\346\233\276\351\235\222\345\207\244/.keep" "b/\346\233\276\351\235\222\345\207\244/.keep" new file mode 100644 index 0000000..e69de29 -- Gitee From e87ecb2bb58829e70cb57cd6ca362ef3f1885adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E9=9D=92=E5=87=A4?= <2658978250@qq.com> Date: Tue, 14 Feb 2023 09:21:17 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=E8=87=AAxzc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 曾青凤 <2658978250@qq.com> --- .../work01.js" | 5 +++++ .../work1.js" | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 "\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work01.js" create mode 100644 "\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work1.js" diff --git "a/\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work01.js" "b/\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work01.js" new file mode 100644 index 0000000..d767dad --- /dev/null +++ "b/\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work01.js" @@ -0,0 +1,5 @@ +let objs = require("./work1"); +console.log(objs.jia(2,3)); +console.log(objs.jian(3,1)); +console.log(objs.cheng(2,3)); +console.log(objs.chu(6,2)); \ No newline at end of file diff --git "a/\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work1.js" "b/\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work1.js" new file mode 100644 index 0000000..e79a03b --- /dev/null +++ "b/\346\233\276\351\235\222\345\207\244/\346\250\241\345\235\227\344\275\234\344\270\232/work1.js" @@ -0,0 +1,17 @@ +let obj={ + 'jia':function(num1,num2) { + return num1 + num2; + }, + 'jian':function(num1,num2) { + return num1 - num2; + }, + 'cheng':function(num1,num2) { + return num1 * num2; + }, + 'chu':function(num1,num2) { + return num1 / num2; + } + + +} +module.exports=obj; \ No newline at end of file -- Gitee From d35e0b07a2aeb059b455efdef0b072f8ee665c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E9=9D=92=E5=87=A4?= <2658978250@qq.com> Date: Tue, 14 Feb 2023 09:21:39 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E6=9B=BE=E9=9D=92=E5=87=A4/.keep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\346\233\276\351\235\222\345\207\244/.keep" | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 "\346\233\276\351\235\222\345\207\244/.keep" diff --git "a/\346\233\276\351\235\222\345\207\244/.keep" "b/\346\233\276\351\235\222\345\207\244/.keep" deleted file mode 100644 index e69de29..0000000 -- Gitee