HKHari Krishnan P Uinharikrishnan.hashnode.devΒ·Oct 21, 2025 Β· 2 min readOperator Precedence (Javascript)Operator precedence determines how operators are parsed concerning each other. Operators with higher precedence become the operands of operators with lower precedence. console.log(3 + 10 / 2); // 3 + 5 ( 10 / 2 ) // Output: 8 console.log(4 * 5 ** 2)...00
HKHari Krishnan P Uinharikrishnan.hashnode.devΒ·Jul 8, 2025 Β· 2 min readUse Of Different HTTP MethodsHi guys, hope you are all doing well! Today, I'm stuck on something which I never thought about throughout my entire developer journey. It's about HTTP methods. We've read about different types of HTTP methods like πππ, ππππ, πππ, πποΏ½...00
HKHari Krishnan P Uinharikrishnan.hashnode.devΒ·Jun 15, 2025 Β· 3 min readIs the .env file secure?HI guys, this is my first blog post. So, I hope you guys will enjoy reading it and being informed. What is .env? So, letβs discuss what a .env file is. From the name, we get that the .env file is an environmental variable. so in our project, we have ...00