method javascirpt example
Example 1: object methods in javascript
const testScore = {
damon: 89,
shawn: 91,
keenan: 80,
kim: 89,
};
Object.keys(testScore);
Object.values(testScore);
Object.entries(testScore);
for (let person in testScore) {...}
for(let score of Object.values(testScore)){
console.log(score)
}
Example 2: what is a javascript method
JavaScript methods are actions that can be performed on syntax.
Examples of methods include syntax ending with ();
Examples:
console.log();
toUpperCase();
Math.floor();
They help change original syntax in various ways.