关键点:

  1. 遍历s1,判断上中的项目是否都在s2中出现
for(let s of s1){
	if(!s2.has(s)) return false;
}
return true;