영어공부

영어공부

Spring Boot with OSGi

We know enterprise applications like Jira/Confluence, Eclipse, Intellij Idea etc, all application are infinite extensible cause they provide supports to develop and install plugin. 우리는 Jira/Confluence, Eclipse, Intellij 와 같은 기업앱을 알고 있다. 모든 앱은 플러그인을 설치하고 개발의 지원을 제공함으로써 한계가없이 확장할수 있다. Same question came to my mind that if we want achieve same plug-ability with Spring-Boot Application, they how we ..

영어공부

JAVA vs NODE

https://medium.com/@Brilworks/java-vs-node-dfdce1810448 JAVA vs NODE Preface medium.com JAVA vs NODE Preface There is a tag “Use the right tool, for the right job, in the right way” and it very much applies to a programming language. Not all programming languages are designed the same and that’s why they are not equally good for everything. If you’re in the web app development world, choosing an..

영어공부

Is the single page application the new normal?

https://headspring.com/2019/06/25/single-page-application/?fbclid=IwAR28ReStgIIxtKu2TQYRiyo3uwEUg4_JmM1hqd1Ud4zMYtQ5Ic0Rw3Udu_U Is the single page application the new normal? - Headspring What is a single page application and do you need one? We take a look at how this approach to building a web app can enhance your user experience. headspring.com Is the single page application the new normal? S..

영어공부

Guide to Java Versions and Features

https://dzone.com/articles/a-guide-to-java-versions-and-features?fbclid=IwAR1IXNe8eTjgNhTSBJwl1QfogVAjvkM4WPOSk6ZMp9pBsqjUbLasCIoVEqM Guide to Java Versions and Features - DZone Java In this guide. we will look at the differences between Java distributions and an overview of Java language features, including Java versions 8-13. dzone.com 해당 링크 번역 You can use this guide to find and install the la..

영어공부

JavaScript Data Types

JavaScript Data Types JavaScript variables can hold many data types: numbers, strings, objects and more: 자바스크립트 데이터 타입 자바스크립트 변수는 많은 종류의 데이터 타입을 저장한다. 숫자, 스트링, 객체 그 이상 The Concept of Data Types In programming, data types is an important concept. To be able to operate on variables, it is important to know something about the type. Without data types, a computer cannot safely solve this: 데이터 타입의 개..

영어공부

JavaScript Variables

JavaScript variables are containers for storing data values. In this example, x, y, and z, are variables: 자바스크립트 변수는 값을 저장하는 위한 컨테이너이다. 예를들면 x,y,z는 변수이다. From the example above, you can expect: x stores the value 5 y stores the value 6 z stores the value 11 위의 예제로 부터 아래의 내용을 예상할수 있다. x는 5를 저장하고, y는 6을 저장하고, z는 11을 저장한다. Much Like Algebra In this example, price1, price2, and total, are variables:..

영어공부

JavaScript Comments

JavaScript comments can be used to explain JavaScript code, and to make it more readable. JavaScript comments can also be used to prevent execution, when testing alternative code. 자바스크립트 주석은 자바스크립트 코드를 설명하기 위해서 사용되어질수 있다. 그리고 자바스크립트 주석은 좀더 읽기 쉽게 만들어 준다. 자바스크립트 주석은 대안의 코드를 실행할때, 실행을 예방하기 위해서 사용되어진다. Single Line Comments Single line comments start with //. Any text between // and the end of the li..

영어공부

JavaScript Syntax

JavaScript syntax is the set of rules, how JavaScript programs are constructed: 자바스크립트 문법은 어떻게 자바스크립트 프로그램들이 구성되어있는가를 정의하는 규칙의 집합이다. JavaScript Values The JavaScript syntax defines two types of values: Fixed values and variable values. Fixed values are called literals. Variable values are called variables. 자바스크립트 변수 자바스크립트 문법은 두가지 변수의 타입을 정의한다. 고정된 변수 변할수 있는 변수 고정된 변수는 literals라고 불리운다 변할수 있는 변수는..

영어공부

JavaScript Statements

JavaScript Programs A computer program is a list of "instructions" to be "executed" by a computer. In a programming language, these programming instructions are called statements. A JavaScript program is a list of programming statements. In HTML, JavaScript programs are executed by the web browser. 컴퓨터 프로그램이란, 컴퓨터의 의해서 실행되어지는 명령어의 리스트이다. 프로그래밍 언어 안에서 이러한 명령어들은 statements 라고 불리어진다. 자바스크립트 프로그램은 프..

영어공부

JavaScript Output

JavaScript Display Possibilities JavaScript can "display" data in different ways: Writing into an HTML element, using innerHTML. Writing into the HTML output using document.write(). Writing into an alert box, using window.alert(). Writing into the browser console, using console.log(). 자바스크립트는 가능성을 보여준다? 자바스크립트는 몇가지 다른 방식으로 데이터를 표현할 수 있다. innerHtml 을 사용함으로서 html 요소 안에 작성할수 있다. document.write(). 를..

jeongsu
'영어공부' 카테고리의 글 목록