6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
let a = 1
|
|
|
|
export const main = ({b,c}) => {
|
|
console.log('current a', a);
|
|
return a++
|
|
} |