This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function resolveAfter2Seconds() { | |
| return new Promise(resolve => { | |
| setTimeout(() => { | |
| resolve('resolved'); | |
| }, 2000); | |
| }); | |
| } | |
| async function asyncCallWithAwait() { | |
| let promiseArray = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(){ | |
| console.log('checkSystemRequirements'); | |
| console.log(JSON.stringify(ZoomMtg.checkSystemRequirements())); | |
| // it's option if you want to change the WebSDK dependency link resources. setZoomJSLib must be run at first | |
| // if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.7.7/lib', '/av'); // CDN version default | |
| // else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.7.7/lib', '/av'); // china cdn option | |
| // ZoomMtg.setZoomJSLib('http://localhost:9999/node_modules/@zoomus/websdk/dist/lib', '/av'); // Local version default, Angular Project change to use cdn version | |
| ZoomMtg.preLoadWasm(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://code.jquery.com/jquery-3.4.1.js"></script> | |
| <input type="text" id="firstName" name="firstName" value="" /> | |
| <input type="text" id="lastName" name="lastName" value="" /> | |
| <script> | |
| $('#firstName').blur(function() { | |
| var str = $(this).val(); | |
| var words = str.split(' '); | |
| var newSent = ''; | |
| for (word of words) { | |
| var newWord = word; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "show_debug": true, | |
| "phpcs_php_prefix_path": "C:\\xampp\\php\\php.exe", | |
| "phpcs_commands_to_php_prefix": ["Fixer"], | |
| "phpcs_executable_path": "C:\\Users\\Administrator\\AppData\\Roaming\\Composer\\vendor\\bin\\phpcs.bat", | |
| "phpcs_additional_args": { |