In this JavaScript tutorial we look at, Learn How to Create Object Methods in JavaScript, Writing Object Methods In JavaScript on Codecademy. This video is based on Codecademy's Learn JavaScript course, Objects section, lesson "Methods". In it, we learn how to create our own methods in our objects. We learn that we have been using methods in objects since about the beginning of our JavaScript journey. We learn that a method is what an object does, while a property is what an object has. We are able to give our object actions through methods. We learn that we use the .log method that is on the console global object. We learn how we are able to write our own methods by giving our method a name or key, and then a colon followed by an anonymous function. We learn that ES6 syntax allows us to do the same thing without having to use a colon or the function keyword. Being able to write JavaScript methods on your own will be a huge leap in your JavaScript journey. Make sure to practice writing JavaScript methods and learn how to call JavaScript methods in your projects. Understanding JavaScript methods and calling JavaScript methods is key in becoming a master programmer. Make sure to learn about Object methods and practice before moving on! Mastering JavaScript Object methods is a key concept and vital in your journey. Thanks for watching, Learn How to Create Object Methods in JavaScript, Writing Object Methods In JavaScript on Codecademy.