📜  复制作业 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:24.250000             🧑  作者: Mango

代码示例1
let REPLIT_INTERESTS = [“dev tools”, “creative tools”, “programming education”]function confirmApplication(name) {// TODO: implement send to replit}function applyToReplit({ name, portfolio, interests }) { if(portfolio && interests.some((interest) =>   REPLIT_INTERESTS.includes(interest))) { confirmApplication(name)}}// usage// applyToReplit({ name: 'you',// portfolio: 'yourportfolio.com',// interests: ['creative tools', 'engineering']// })