JLJimmy Lininjimmylin.hashnode.dev·Feb 26, 2023 · 1 min readHello hashnodeI went here to see if everything was working great. The most important part for me is the code block. I'll try it below :) def add(a: int, b: int) -> int: return a + b print(add(21, 21)) # 4200
JLJimmy Lininjimmylin.hashnode.dev·Feb 26, 2023 · 1 min readJavaScript 5 ways to define a functionJavaScript 5 ways to define a function Function declaration function sum(a, b) { return a + b; } Function expression const sum = function(a, b) { return a + b; } const computer = { // Function expression sum: function(a, ...00