-
We need to create a schema. The schema outlines all the endpoints and actions of our API.
-
We need to create the documentation that is a more human-readable form of the schema.
HTTPS is when HTTP (hypertext transfer protocol); a communication protocol, is encrypted using TLS (transport layer security).
This means that if anyone is eavesdropping on the communication between a server and a client, they will eavesdrop on encrypted data that is hard to decipher and is therefore secure.
TLS is the more recent term which replaces the term SSL (secure socket layer) but we can refer to them as SSL/TLS.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// a simple object literal | |
var person = { | |
name: 'Alex', | |
hi: function() { | |
alert("Hi! I'm " + this.name + " ."); | |
} | |
} | |
// check the properties and methods | |
person.name; |