A
Size: a a a
A
TS
typeof null // "object” 😄B
A
TS
TS
G
undefined, или 123nG
echo "Abcdef" | node -e "..."RK
RK
RK
VARIABLE_NAME=VALUE node app.jsRK
set VARIABLE_NAME=VALUE && node app.jsVD
echo "test" | node test.js
process.stdin.setEncoding('utf8');
process.stdin.on('readable', () => {
let chunk;
while ((chunk = process.stdin.read()) !== null) {
process.stdout.write(chunk);
}
});G
echo "test" | node test.js
process.stdin.setEncoding('utf8');
process.stdin.on('readable', () => {
let chunk;
while ((chunk = process.stdin.read()) !== null) {
process.stdout.write(chunk);
}
});G
G
K
TS