5 lines
62 B
JavaScript
5 lines
62 B
JavaScript
|
function duplaz(szam) {
|
||
|
return szam * 2
|
||
|
}
|
||
|
|
||
|
export {duplaz}
|