startit/eloquentjavascript/functions.js

3 lines
48 B
JavaScript
Raw Normal View History

2024-08-19 13:36:00 +02:00
const square = function(x) {
return x * x;
}