LDLeo De Leonincd2lrn.hashnode.dev·Jul 12, 2024 · 2 min readAnonymous object in JavaWatch the video on anonymous object below and jump right in to start coding session to try out how objects are created. https://www.youtube.com/watch?v=iFRvgnLDWxc In Java, object is created using the new keyword. Object comes from a class. For ins...00
LDLeo De Leonincd2lrn.hashnode.dev·Jun 13, 2024 · 3 min readFunctions in JavaScriptWhat makes a function a function? It contains a block of code can take some input(s) convert those input(s) into an output must work the same way every time (deterministic) all in all, it turns the block of code reusable To sum up, functions t...00