Developing Algorithms: In this lesson, I learned about developing algorithms and how they are important. They are important because it can improve code efficiency, allow people to solve problems with code, and give software solutions.

Addition is with the “+” Operator in JS: We can use the “+” operator to add two numbers together in JS:

var result = 1230 + 200;
console.log(result); // result is 1430

Subtraction with the “-“ Operator in JS: The “-“ operator allows us to subtract one number from another:

var result = 169 - 5;
console.log(result); // Outputs 164

Multiplication with the “” Operator in JavaScript: The “” operator is used for multiplying:

var result = 3 * 7;
console.log(result); // Outputs 21

Division with the “/” Operator in JavaScript: The “/” operator is used to divide numbers:

var result = 20 / 4;
console.log(result); // Outputs 5

Remainder with the “%” Operator in JavaScript: The “%” operator gives us the remainder of a division operation:

var result = 15 % 4;
console.log(result); // Outputs 3

Iterating: Iteration involves going through a set of laws or objectives, often using loops to complete tasks. It’s an essential concept in programming for repetitive tasks.

Randomization: Randomization is a technique for generating random numbers or outcomes, making each result equally likely. It’s especially useful for games, simulations, and randomness in applications.

Sorting a list in python:

numList = [43, 2, 6, 2, 96, 32]
numList.sort()
print(numList)