Advertisement
soden

Untitled

Feb 25th, 2024
707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.14 KB | Source Code | 0 0
  1. function hitungLuasPersegi(sisi) {
  2.   return sisi * sisi;
  3. }
  4.  
  5. const luasPersegi = hitungLuasPersegi(5);
  6.  
  7. console.log(luasPersegi); // 25
Tags: JavaScript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement