PGPulkit Govraniinpulkitgovrani.hashnode.dev·Feb 2, 2025 · 5 min readBuilding an Income Tax Calculator in ReactIntroduction Income tax is a significant aspect of financial planning, and understanding how much tax you owe can sometimes be a confusing process. To simplify this, I’ve developed a dynamic Income Tax Calculator using React, designed to help users c...00
PGPulkit Govraniinpulkitgovrani.hashnode.dev·Aug 29, 2024 · 1 min readFunctions in RustThe main function present in code is an entry point for the compiler, so it is compulsory to have one main function in code. We use fn keyword to declare functions in Rust. The functions follow snake case conventional style for naming i.e, where all ...00
PGPulkit Govraniinpulkitgovrani.hashnode.dev·Jul 21, 2024 · 7 min readBuilding a Tic Tac Toe Game on Aptos with Move LanguageTic Tac Toe is a classic game that serves as a great example for demonstrating fundamental programming concepts. In this blog, we will learn how to implement a Tic Tac Toe game using the Move programming language on the Aptos blockchain platform. We ...00
PGPulkit Govraniinpulkitgovrani.hashnode.dev·Jun 2, 2023 · 2 min readHoisting in JavascriptLook at the below code and guess its output: console.log(val); var val; If you have not studied hoisting and if you are learning javascript after learning any other programming language like Java or C++ then your guess will be " that the above code ...00
PGPulkit Govraniinpulkitgovrani.hashnode.dev·Jun 1, 2023 · 2 min readDifference between undefined, not defined & null in javascriptThis topic is one of the famous interview questions so therefore we are here to cover this in our blog. Without wasting any time let's move on to the main part. How undefined Work? Undefined is returned by the javascript compiler when a particular va...01B