使用何种语言编写以下代码?

时间:2018-01-21 16:23:15

标签: javascript firebase google-cloud-functions

有谁可以解释这里使用的语言?

exports.sendNotification = functions.database.ref('/message/{userId}/{pushId}').onWrite(event => {
    const snapshot = event.data;
    const userId = event.params.userId;
});

1 个答案:

答案 0 :(得分:2)

这是在Cloud Functions中运行的JavaScript,它是一个受管node.js环境。