zoukankan      html  css  js  c++  java
  • Introduction to JavaScript

    JavaScript is the programming language of the Web. The overwhelming majority of modern websites use JavaScript, and all modern web browsers-on desktop, game consoles, tablets, and smart phones-include JavaScript interpreters, making JavaScript the most ubiquitous programming language in history. JavaScript is part of the triad of technologies that all Web developers must learn: HTML to specify the content of web pages, CSS to specify the presentation of web pages, and JavaScript to specify the behavior of web pages. This book will help you master the language.

    If you are already familiar with other programming languages, it may help you to know that JavaScript is a high-level, dynamic, untyped interpreted programming language that is well-suited to object-oriented and functional programming styles. JavaScript derives its syntax from Java, its first-class functions from Scheme, and its prototype-based inheritance from Self. But you do not need to know any of those languages, or be familiar with those terms, to use this book and learn JavaScript.

    The name "JavaScript" is actually somewhat misleading. Except for a superificial syntactic resemblance, JavaScript has long since outgrown its scripting-language roots to become a robust and efficient general-prupose language. The latest version of the language(see the sidebar) defines new features for serious large-scale software development.

  • 相关阅读:
    C#.ToString()格式大全
    C# 中的正则验证及用法
    解除SVN的控制
    SVN检出忽略文件夹文件
    Mac下查看及生成SSH Key
    Xcode-报错问题总结大全
    CentOS6.5上kafka 安装过程-多机版本
    神经网络绘图网址
    CentOs 中没有eth0文件
    Spring 入门
  • 原文地址:https://www.cnblogs.com/specification/p/4544829.html
Copyright © 2011-2022 走看看