SBShah Bazinshahbaj.hashnode.dev·Jul 8, 2022 · 2 min readJavaScript ConceptsImperative traverse a loop where it starts and ends. how the loop is increment and what's the operation, we declare all of these. this is the imperative traversing. e.g const numbers = [2, 5, 6, 7, 89, 100]; let sum = 0; for (let i = 0; i < numbers....00
SBShah Bazinshahbaj.hashnode.dev·Jul 6, 2022 · 2 min readProblem SolvingHow do integer variables act like float/double variables? Ans: when we declare an integer number, we write (int num = 5;) and when we declare a double number, we write (double num2 = 5.49;) if we want to divide or multiply between int and double numb...00
SBShah Bazinshahbaj.hashnode.dev·Jul 6, 2022 · 1 min readProgramming FundamentalsExpression Vs Statement Expression returns a new value. on the other hand, the statement doesn't return. the statement is just a standalone and doesn't return anything. Expression is a combination of values and functions. that are combined and interp...00