# 学习笔记 **Repository Path**: zxr-xiaoha/study-notes ## Basic Information - **Project Name**: 学习笔记 - **Description**: 学习笔记 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-05 - **Last Updated**: 2023-09-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # js调用字符串函数 ~~~js let str = ` function fun1(){ console.log(1) } ` let fun = new Function('return '+str) fun()() ~~~