JavaScript
class Chat {
constructor() { this.messages = []; }
send(message) { this.messages.push({text: message, time: Date.now()}); }
getMessages() { return this.messages; }
}Output
// Chat functionality
Chat Application enables messaging.