誰かが送信関数に次のコードから電子メールオブジェクトを読み取らせる方法を教えてもらえますか?
var email = {
to: 'google@gmail.com',
subject: 'new email',
text: 'helloWorld'
}
function send() {
var sendMe = new email();
console.log(sendMe.subject);
}
send();
私はこのエラーを受け取ります私はまた次のように電子メールを宣言しようとしました:
var email = new object();
そしてそれはうまくいきませんでした
Uncaught TypeError: object is not a function