Posts

Showing posts from January, 2022

Codepedia: Learn Coding World For Free

Image
Powered by  ProTec Games Embed: To insert Something usually in HTML Algorithm: set of instructions that are followed to solve a problem Argument: way to provide more information to a function. The function can then use that information as it runs, like a variable  Array: containers that hold variables; they're used to group together similar variables. You can think of arrays like shelves at a pet store. The array would be the shelf, and the animals in cages are the variables inside.  Arithmetic operators:  essential in almost every application, especially in games. If a game character earns experience, it needs to be added to the total earned. If an arrow hits an enemy, the damage the enemy takes needs to be calculated. Assignment operators:    (+=, -=, *=, /=) are operators that combine variable assignments (=) with arithmetic operators. They serve as a shortcut when coders have to perform an operation that changes the value of a variable. If a rock falls on a game player'