-
var
는function-scoped
이고,let
,const
는block-scoped
입니다. -
function-scoped
와block-scoped
가 무슨말이냐?
This file contains 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
/* | |
Simple WebSocketServer example that can receive voice transcripts from Chrome | |
Requires WebSockets Library: https://github.com/alexandrainst/processing_websockets | |
*/ | |
import websockets.*; | |
WebsocketServer socket; | |
void setup() { |