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
//////////////////////////////////////////////////////////////////////////////// | |
// Exercise: | |
// | |
// - Create a chat application using the utility methods we give you | |
// | |
// Need some ideas? | |
// | |
// - Cause the message list to automatically scroll as new | |
// messages come in | |
// - Highlight messages from you to make them easy to find |
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
# make a folder selection using ls and pass it to echo to see command output before executing | |
ls -d muchos*dirs/ | xargs -I{} echo rm -rf {} |
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
// Object literal demo | |
var obj = {}; | |
var key = Symbol('foo'); | |
obj[key] = 'baz'; | |
console.log(obj); |
NewerOlder