class Person { sayname() { return 'cc name' } } var c_john = new Person() console.log(c_john,c_john.sayname()) var promise = Promise.resolve('ok')