Method = a function that belongs to an object
name = “GUSTAV”
name.[[lower()]] #

Explanation
Methods are called on objects using dot notation (.).

Example

name = "GUSTAV"

name.lower()
  • Object: "GUSTAV"
  • Method: lower()