摘要: TypeScript 2.0 introduced the readonly modifier which can be added to a property or index signature declaration. It helps prevent against unintended p 阅读全文
posted @ 2017-11-09 21:06 Zhentiw 阅读(283) 评论(0) 推荐(0)
摘要: # Python's list comprehensions are awesome. vals = [expression for value in collection if condition] # This is equivalent to: vals = [] for value in collection: if condition:... 阅读全文
posted @ 2017-11-09 19:04 Zhentiw 阅读(182) 评论(0) 推荐(0)