mirror of
https://gitee.com/ShopeX/ECShopX
synced 2026-08-07 12:35:46 +08:00
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
// This file has no lint issues
|
|
const greeting = 'hello';
|
|
console.log(greeting);
|
|
|
|
function add(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
const result = add(1, 2);
|
|
console.log(result); |