Ima güte. Ima dança/Operation table
Jump to navigation
Jump to search
| Add | Subtract | Multiply | Divide | Modulo | |
|---|---|---|---|---|---|
| Both numbers | Adds | Subtracts | Multiplies | Divides | "Moduloes" |
| Number and string | Joins the number and the string | Removes the first n chars from the string | Repeats the string n times | Divides it by n but when it's a fraction it takes the floor of it | Removes the first chars untill the legnth is equal to n |
| String and number | Joins the string and the number | Removes the last n chars from the string | Repeats the string n times | Divides n by the legnth of the string incluiding spaces like this -> <- | Cuts the legnth so it's the same as long as the string |
| Both strings | Joins | Removes all instances of the second string in the first one | Sticks the second string after the characters in the first string | Checks how many instances of the second string are equal to the first one | Cuts the first one so that it is less or equal of legnth |