var, let, const 차이점은?
-
var
는function-scoped
이고,let
,const
는block-scoped
입니다. -
function-scoped
와block-scoped
가 무슨말이냐?
var
는 function-scoped
이고, let
, const
는 block-scoped
입니다.
function-scoped
와 block-scoped
가 무슨말이냐?
/* | |
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() { |