Giter VIP home page Giter VIP logo

fe-review's People

Contributors

qubitsky avatar

Watchers

 avatar

fe-review's Issues

typescript知识点

变量类型推断

let foo = 'foo';
const bar = 'bar';

上述代码中,foo会被推断为string类型,bar会被推断为'bar'类型

const obj = {
  foo: 'foo',
  bar: 'bar'
}

上述代码中,obj的类型会被推断为

const obj: {
  foo: string;
  bar: string;
}

如果我们需要保留字面量值为它的类型呢?

这篇文章有讨论这个问题:Tuple与字面量类型的保留

在文章评论区发现了一个很好的解决办法:as const

它是 [email protected] 新增的一个特性:const assertions

前端技术方向

  • 工程化——脚手架、可视化构建
  • 视图框架——react、vue、react native、Flutter
  • 组件化——web components
  • 数据可视化——图表
  • 计算机图形——3d动画、游戏
  • 规范化——eslint、stylelint、prettier

前端是什么

向一位从未接触过,但是感兴趣的学员介绍前端是什么
可以从以下几个方面:

  • 是做什么的?职责范围
  • 需要掌握什么?知识范围
  • 可以用来做什么?能力范围、可能性
  • 学习路线?
  • 其他。发展历史等等

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.