├── 01-02 ├── index.html └── script.js ├── 01-03 ├── script.js └── index.html ├── 02-03 ├── script.js └── index.html ├── .gitignore ├── 02-01 ├── script.js └── index.html ├── 05-01 ├── script.js └── index.html ├── 03-03 ├── script.js └── index.html ├── 03-04 ├── script.js └── index.html ├── 03-01 ├── script.js └── index.html ├── 05-05 ├── script.js └── index.html ├── favicon.ico ├── 04-04 ├── script.js └── index.html ├── 05-04 ├── script.js └── index.html ├── 02-02 ├── script.js └── index.html ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── workflows │ └── main.yml └── ISSUE_TEMPLATE.md ├── 02-06 ├── script.js └── index.html ├── 06-01 ├── script.js └── index.html ├── 04-01 ├── script.js └── index.html ├── 05-03 ├── script.js └── index.html ├── 04-03 ├── script.js └── index.html ├── 02-04 ├── script.js └── index.html ├── 03-02 ├── script.js └── index.html ├── 05-02 ├── script.js └── index.html ├── 06-03 ├── script.js └── index.html ├── 02-05 ├── index.html └── script.js ├── 04-02 ├── index.html └── script.js ├── 05-06 ├── index.html └── script.js ├── 06-02 ├── index.html └── script.js ├── 06-04 ├── index.html └── script.js ├── .devcontainer └── devcontainer.json ├── CONTRIBUTING.md ├── NOTICE ├── .vscode └── settings.json ├── README.md └── LICENSE /01-02/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-02/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-03/script.js: -------------------------------------------------------------------------------- 1 | alert("外部ファイルのJavaScriptです。"); -------------------------------------------------------------------------------- /02-03/script.js: -------------------------------------------------------------------------------- 1 | const myName = "沖 良矢"; 2 | console.log(myName); -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /02-01/script.js: -------------------------------------------------------------------------------- 1 | alert("はじめまして。"); 2 | alert("JavaScriptです。"); 3 | -------------------------------------------------------------------------------- /05-01/script.js: -------------------------------------------------------------------------------- 1 | const myDate = new Date(); 2 | console.log(myDate); 3 | -------------------------------------------------------------------------------- /03-03/script.js: -------------------------------------------------------------------------------- 1 | for (let i = 1; i <= 10; i++) { 2 | console.log(i); 3 | } -------------------------------------------------------------------------------- /03-04/script.js: -------------------------------------------------------------------------------- 1 | let i = 1; 2 | while (i <= 10) { 3 | console.log(i); 4 | i++; 5 | } -------------------------------------------------------------------------------- /03-01/script.js: -------------------------------------------------------------------------------- 1 | const hour = 10; 2 | if (hour <= 12) { 3 | console.log("おはようございます。"); 4 | } -------------------------------------------------------------------------------- /05-05/script.js: -------------------------------------------------------------------------------- 1 | const user = { 2 | name: "沖 良矢", 3 | age: 37, 4 | hasChild: true, 5 | }; 6 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/5912029-JavaScript-Essential-Training/main/favicon.ico -------------------------------------------------------------------------------- /04-04/script.js: -------------------------------------------------------------------------------- 1 | const calculateTax = (price) => { 2 | const taxRate = 1.1; 3 | return price * taxRate; 4 | }; 5 | -------------------------------------------------------------------------------- /05-04/script.js: -------------------------------------------------------------------------------- 1 | console.log(Math.max(173, 150, 160, 182, 190, 176)); 2 | console.log(Math.min(6, 2, 10, -2, 0.5)); 3 | -------------------------------------------------------------------------------- /02-02/script.js: -------------------------------------------------------------------------------- 1 | //アラートを表示します 2 | console.log("はじめまして。"); 3 | console.log("JavaScriptです。"); 4 | /* コメントです。 5 | コメントです。 6 | 最後の行です。*/ -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Codeowners for these exercise files: 2 | # * (asterisk) denotes "all files and folders" 3 | # Example: * @producer @instructor 4 | -------------------------------------------------------------------------------- /02-06/script.js: -------------------------------------------------------------------------------- 1 | const myName1 = "沖"; 2 | const myName2 = '良矢'; 3 | console.log(myName1 + myName2); 4 | 5 | console.log(`私の名前は${myName1}${myName2}です。`); 6 | -------------------------------------------------------------------------------- /06-01/script.js: -------------------------------------------------------------------------------- 1 | const myArray = ["りんご", "ゴリラ", "ラッパ"]; 2 | console.log(myArray); 3 | console.log(myArray[1]); 4 | myArray[2] = "ラード"; 5 | console.log(myArray); 6 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /04-01/script.js: -------------------------------------------------------------------------------- 1 | function getMessage() { 2 | const message = "初めての関数です。"; 3 | return message; 4 | } 5 | 6 | const myMessage = getMessage(); 7 | console.log(myMessage); 8 | -------------------------------------------------------------------------------- /05-03/script.js: -------------------------------------------------------------------------------- 1 | const randomNumber = Math.random(); 2 | console.log(randomNumber); 3 | 4 | const diceNumber = Math.floor(Math.random() * 6) + 1; 5 | console.log(diceNumber); 6 | -------------------------------------------------------------------------------- /04-03/script.js: -------------------------------------------------------------------------------- 1 | function calculateTax(price) { 2 | const taxRate = 1.1; 3 | return price * taxRate; 4 | } 5 | 6 | console.log(calculateTax(1000)); 7 | console.log(calculateTax(480)); 8 | -------------------------------------------------------------------------------- /02-04/script.js: -------------------------------------------------------------------------------- 1 | // String(文字列) 2 | const myName = "沖 良矢"; 3 | console.log(myName); 4 | // Number(数値) 5 | const myAge = 42; 6 | console.log(myAge); 7 | // Boolean(真偽値) 8 | const isAdult = true; 9 | console.log(isAdult); -------------------------------------------------------------------------------- /03-02/script.js: -------------------------------------------------------------------------------- 1 | const hour = 2; 2 | if (hour >= 6 && hour < 12) { 3 | console.log("おはようございます。"); 4 | } else if (hour >= 12 && hour < 18) { 5 | console.log("こんにちは。"); 6 | } else { 7 | console.log("こんばんは。"); 8 | } -------------------------------------------------------------------------------- /05-02/script.js: -------------------------------------------------------------------------------- 1 | const myDate = new Date(); 2 | console.log(myDate.getFullYear()); 3 | console.log(myDate.getMonth()); // 0~11(0は1月) 4 | console.log(myDate.getDate()); 5 | console.log(myDate.getDay()); // 0~6(0は日曜日) 6 | -------------------------------------------------------------------------------- /06-03/script.js: -------------------------------------------------------------------------------- 1 | const myArray = ["しりとり", "りんご", "ゴリラ", "ラッパ", "パセリ"]; 2 | console.log(myArray.length); 3 | myArray.splice(2, 2); 4 | console.log(myArray); 5 | myArray.splice(1, 0, "りょうり"); 6 | console.log(myArray); 7 | -------------------------------------------------------------------------------- /02-01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /02-02/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /02-03/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /02-04/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /02-05/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /02-06/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /03-01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /03-02/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /03-03/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /03-04/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /04-01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /04-02/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /04-03/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /04-04/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /05-01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /05-02/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /05-03/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /05-04/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /05-05/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /05-06/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /06-01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /06-02/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /06-03/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /06-04/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JavaScript基本講座 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /02-05/script.js: -------------------------------------------------------------------------------- 1 | const myNumber = -37; 2 | 3 | console.log(3 + 2); 4 | console.log(8 - 6); 5 | console.log(4 * 3); 6 | console.log(8 / 2); 7 | 8 | console.log(4 * (2 + 6)); 9 | 10 | let plusNumber = 5; 11 | plusNumber += 1; 12 | console.log(plusNumber); -------------------------------------------------------------------------------- /06-02/script.js: -------------------------------------------------------------------------------- 1 | const myArray = ["りんご", "ゴリラ", "ラッパ"]; 2 | myArray.push("パセリ"); 3 | console.log(myArray); 4 | myArray.unshift("しりとり"); 5 | console.log(myArray); 6 | myArray.pop(); 7 | console.log(myArray); 8 | myArray.shift(); 9 | console.log(myArray); 10 | -------------------------------------------------------------------------------- /04-02/script.js: -------------------------------------------------------------------------------- 1 | function getMessage(lastName, firstName) { 2 | const message = `私の苗字は${lastName}、下の名前は${firstName}です。`; 3 | return message; 4 | } 5 | 6 | const myMessage = getMessage("沖", "良矢"); 7 | console.log(myMessage); 8 | const myMessage2 = getMessage("坂本", "竜馬"); 9 | console.log(myMessage2); -------------------------------------------------------------------------------- /01-03/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | はじめてのJavaScript 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /05-06/script.js: -------------------------------------------------------------------------------- 1 | const user = { 2 | name: "沖 良矢", 3 | age: 37, 4 | hasChild: true, 5 | }; 6 | console.log(user); 7 | console.log(user.name); 8 | console.log(user.age); 9 | user.age = 42; 10 | console.log(user.age); 11 | console.log(user.address); 12 | user.address = "東京都"; 13 | console.log(user.address); 14 | console.log(user); 15 | -------------------------------------------------------------------------------- /06-04/script.js: -------------------------------------------------------------------------------- 1 | const myArray = [100, 20, 55, 36, 123]; 2 | 3 | /* 4 | myArray.forEach((element, index, array) => { 5 | console.log(element, index, array); 6 | array[index] = 0; 7 | }); 8 | console.log(myArray); 9 | */ 10 | 11 | const newArray = myArray.map((element, index, array) => { 12 | return element * 10; 13 | }); 14 | console.log(myArray); 15 | console.log(newArray); 16 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Copy To Branches 2 | on: 3 | workflow_dispatch: 4 | jobs: 5 | copy-to-branches: 6 | runs-on: ubuntu-latest 7 | steps: 8 | - uses: actions/checkout@v2 9 | with: 10 | fetch-depth: 0 11 | - name: Copy To Branches Action 12 | uses: planetoftheweb/copy-to-branches@v1.2 13 | env: 14 | key: main 15 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions": [ 3 | "GitHub.github-vscode-theme", 4 | "esbenp.prettier-vscode", 5 | "dbaeumer.vscode-eslint", 6 | "ritwickdey.LiveServer", 7 | "stylelint.vscode-stylelint" 8 | // Additional Extensions Here 9 | ], 10 | "onCreateCommand": "echo PS1='\"$ \"' >> ~/.bashrc", //Set Terminal Prompt to $ 11 | "postAttachCommand": "git pull --all" 12 | } 13 | 14 | // DevContainer Reference: https://code.visualstudio.com/docs/remote/devcontainerjson-reference 15 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | Contribution Agreement 3 | ====================== 4 | 5 | This repository does not accept pull requests (PRs). All pull requests will be closed. 6 | 7 | However, if any contributions (through pull requests, issues, feedback or otherwise) are provided, as a contributor, you represent that the code you submit is your original work or that of your employer (in which case you represent you have the right to bind your employer). By submitting code (or otherwise providing feedback), you (and, if applicable, your employer) are licensing the submitted code (and/or feedback) to LinkedIn and the open source community subject to the BSD 2-Clause license. 8 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2024 LinkedIn Corporation 2 | All Rights Reserved. 3 | 4 | Licensed under the LinkedIn Learning Exercise File License (the "License"). 5 | See LICENSE in the project root for license information. 6 | 7 | Please note, this project may automatically load third party code from external 8 | repositories (for example, NPM modules, Composer packages, or other dependencies). 9 | If so, such third party code may be subject to other license terms than as set 10 | forth above. In addition, such third party code may also depend on and load 11 | multiple tiers of dependencies. Please review the applicable licenses of the 12 | additional dependencies. 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 7 | 8 | ## Issue Overview 9 | 10 | 11 | ## Describe your environment 12 | 13 | 14 | ## Steps to Reproduce 15 | 16 | 1. 17 | 2. 18 | 3. 19 | 4. 20 | 21 | ## Expected Behavior 22 | 23 | 24 | ## Current Behavior 25 | 26 | 27 | ## Possible Solution 28 | 29 | 30 | ## Screenshots / Video 31 | 32 | 33 | ## Related Issues 34 | 35 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.bracketPairColorization.enabled": true, 3 | "editor.cursorBlinking": "solid", 4 | "editor.fontFamily": "ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace", 5 | "editor.fontLigatures": false, 6 | "editor.fontSize": 22, 7 | "editor.formatOnPaste": true, 8 | "editor.formatOnSave": true, 9 | "editor.lineNumbers": "on", 10 | "editor.matchBrackets": "always", 11 | "editor.minimap.enabled": false, 12 | "editor.smoothScrolling": true, 13 | "editor.tabSize": 2, 14 | "editor.useTabStops": true, 15 | "emmet.triggerExpansionOnTab": true, 16 | "explorer.openEditors.visible": 0, 17 | "files.autoSave": "afterDelay", 18 | "screencastMode.onlyKeyboardShortcuts": true, 19 | "terminal.integrated.fontSize": 18, 20 | "workbench.colorTheme": "GitHub Light Default", 21 | "workbench.fontAliasing": "antialiased", 22 | "workbench.statusBar.visible": true, 23 | "liveServer.settings.root": "/docs", 24 | "prettier.enable": true, 25 | "eslint.alwaysShowStatus": false, 26 | "liveServer.settings.donotVerifyTags": true 27 | } 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JavaScript 基本講座 2 | LinkedInラーニングの「JavaScript 基本講座」コース用のリポジトリです。このコースは [LinkedInラーニング][lil-course-url]で視聴できます。 3 | 4 | ![JavaScript 基本講座][lil-thumbnail-url] 5 | JavaScriptは世界でもっとも使われているプログラミング言語です。ほとんどのウェブサイトでJavaScriptが用いられており、さまざまなインタラクティブな機能を実現しています。また、昨今ではウェブ以外のアプリケーション開発やIoT機器の制御などにも広く利用されています。JavaScriptが自由に使えるようになれば、さまざまな環境でプログラミングをすることが可能になります。このコースでは初心者の方がプログラミングについて体系的に知識を習得できるよう、JavaScriptの概要から基本的な書き方までを学習します。ファイルの作り方や基本的な文法はもちろん、変数や関数といったプログラミングで使う基本概念や、if文やfor文といった制御構文の使い方、オブジェクトや配列を用いたデータの取り扱い方などを実際にコードを書きながらわかりやすく解説します。 6 | 7 | ## リポジトリの使い方 8 | このリポジトリには必要に応じてブランチが設けられています。ブランチのポップアップメニューを使用して、使用するブランチに切り替えたあとにコースを視聴してください。またURLに`「/tree/ブランチ名」`を追加することで、アクセスしたいブランチに移動することも可能です。 9 | 10 | ## ブランチ 11 | ブランチはレッスンごとに作成されている場合があります。その場合はブランチ名に`「章番号_レッスン番号」`が付けられています。例えば`「02_03」`という名前のブランチは、2章の上から3番目のレッスン用のブランチとなります。 12 | 13 | レッスン前と後のコードを格納しているブランチもあります。該当ブランチには「開始時」(beginning)を表す`「b」`と、「終了時」(ending)を表す`「e」` がブランチ名についています。`「b」`のブランチにはレッスン開始時点のコードが、`「e」`のブランチにはレッスン終了時点のコードが格納されています。また「main」のブランチにはコードの最終形が格納されています。 14 | 15 | ファイルに変更を加えた後に、エクササイズファイルのブランチを次のブランチに切り替えたさい、次のようなメッセージが表示されることがあります。 16 | 17 | error: Your local changes to the following files would be overwritten by checkout: [files] 18 | Please commit your changes or stash them before you switch branches. 19 | Aborting 20 | 21 | この問題を解決するには: 22 | 23 | 次のコマンドで変更を加えます:git add . 24 | 次のコマンドで変更をコミットします:git commit -m "some message" 25 | 26 | ## GitHub Codespacesについて 27 | プログラミング言語を学ぶ最良の方法は、実際にそれを使用することです。それがこのコースがGitHub Codespacesと統合されている理由です。GitHub Codespacesは、あなたが普段使っているIDEのすべての機能を提供するクラウド上の手軽な開発環境です。ローカルマシンのセットアップも必要ありません。 GitHub Codespacesを使えば、あなたが職場で使っている他のツールを使用しながら、どのパソコンからでもいつでもプログラミングの実践的な練習ができます。「このコースでGitHub Codespacesを使うには」の動画をチェックして、その使い方を学びましょう。 28 | 29 | ### インストラクター 30 | 31 | **沖 良矢** 32 | 33 | _インタラクションデザイナー_ 34 | 35 | この講師の他のコースを視聴する:[LinkedInラーニング](https://www.linkedin.com/learning/instructors/8515347) 36 | 37 | [lil-course-url]: https://www.linkedin.com/learning/javascript-essential-training-2024 38 | [lil-thumbnail-url]: https://media.licdn.com/dms/image/v2/D4D0DAQG6a9wXjvrqHA/learning-public-crop_675_1200/learning-public-crop_675_1200/0/1729022738194?e=1732582800&v=beta&t=vBUrxJtfqbQj3vRGWjUiO-_dShWDsmibxs6m49Kcsoo 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LinkedIn Learning Exercise Files License Agreement 2 | ================================================== 3 | 4 | This License Agreement (the "Agreement") is a binding legal agreement 5 | between you (as an individual or entity, as applicable) and LinkedIn 6 | Corporation (“LinkedIn”). By downloading or using the LinkedIn Learning 7 | exercise files in this repository (“Licensed Materials”), you agree to 8 | be bound by the terms of this Agreement. If you do not agree to these 9 | terms, do not download or use the Licensed Materials. 10 | 11 | 1. License. 12 | - a. Subject to the terms of this Agreement, LinkedIn hereby grants LinkedIn 13 | members during their LinkedIn Learning subscription a non-exclusive, 14 | non-transferable copyright license, for internal use only, to 1) make a 15 | reasonable number of copies of the Licensed Materials, and 2) make 16 | derivative works of the Licensed Materials for the sole purpose of 17 | practicing skills taught in LinkedIn Learning courses. 18 | - b. Distribution. Unless otherwise noted in the Licensed Materials, subject 19 | to the terms of this Agreement, LinkedIn hereby grants LinkedIn members 20 | with a LinkedIn Learning subscription a non-exclusive, non-transferable 21 | copyright license to distribute the Licensed Materials, except the 22 | Licensed Materials may not be included in any product or service (or 23 | otherwise used) to instruct or educate others. 24 | 25 | 2. Restrictions and Intellectual Property. 26 | - a. You may not to use, modify, copy, make derivative works of, publish, 27 | distribute, rent, lease, sell, sublicense, assign or otherwise transfer the 28 | Licensed Materials, except as expressly set forth above in Section 1. 29 | - b. Linkedin (and its licensors) retains its intellectual property rights 30 | in the Licensed Materials. Except as expressly set forth in Section 1, 31 | LinkedIn grants no licenses. 32 | - c. You indemnify LinkedIn and its licensors and affiliates for i) any 33 | alleged infringement or misappropriation of any intellectual property rights 34 | of any third party based on modifications you make to the Licensed Materials, 35 | ii) any claims arising from your use or distribution of all or part of the 36 | Licensed Materials and iii) a breach of this Agreement. You will defend, hold 37 | harmless, and indemnify LinkedIn and its affiliates (and our and their 38 | respective employees, shareholders, and directors) from any claim or action 39 | brought by a third party, including all damages, liabilities, costs and 40 | expenses, including reasonable attorneys’ fees, to the extent resulting from, 41 | alleged to have resulted from, or in connection with: (a) your breach of your 42 | obligations herein; or (b) your use or distribution of any Licensed Materials. 43 | 44 | 3. Open source. This code may include open source software, which may be 45 | subject to other license terms as provided in the files. 46 | 47 | 4. Warranty Disclaimer. LINKEDIN PROVIDES THE LICENSED MATERIALS ON AN “AS IS” 48 | AND “AS AVAILABLE” BASIS. LINKEDIN MAKES NO REPRESENTATION OR WARRANTY, 49 | WHETHER EXPRESS OR IMPLIED, ABOUT THE LICENSED MATERIALS, INCLUDING ANY 50 | REPRESENTATION THAT THE LICENSED MATERIALS WILL BE FREE OF ERRORS, BUGS OR 51 | INTERRUPTIONS, OR THAT THE LICENSED MATERIALS ARE ACCURATE, COMPLETE OR 52 | OTHERWISE VALID. TO THE FULLEST EXTENT PERMITTED BY LAW, LINKEDIN AND ITS 53 | AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY OR CONDITION, INCLUDING 54 | ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A 55 | PARTICULAR PURPOSE, AVAILABILITY, SECURITY, TITLE AND/OR NON-INFRINGEMENT. 56 | YOUR USE OF THE LICENSED MATERIALS IS AT YOUR OWN DISCRETION AND RISK, AND 57 | YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE THAT RESULTS FROM USE OF THE 58 | LICENSED MATERIALS TO YOUR COMPUTER SYSTEM OR LOSS OF DATA. NO ADVICE OR 59 | INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM US OR THROUGH OR 60 | FROM THE LICENSED MATERIALS WILL CREATE ANY WARRANTY OR CONDITION NOT 61 | EXPRESSLY STATED IN THESE TERMS. 62 | 63 | 5. Limitation of Liability. LINKEDIN SHALL NOT BE LIABLE FOR ANY INDIRECT, 64 | INCIDENTAL, SPECIAL, PUNITIVE, CONSEQUENTIAL OR EXEMPLARY DAMAGES, INCLUDING 65 | BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER 66 | INTANGIBLE LOSSES . IN NO EVENT WILL LINKEDIN'S AGGREGATE LIABILITY TO YOU 67 | EXCEED $100. THIS LIMITATION OF LIABILITY SHALL: 68 | - i. APPLY REGARDLESS OF WHETHER (A) YOU BASE YOUR CLAIM ON CONTRACT, TORT, 69 | STATUTE, OR ANY OTHER LEGAL THEORY, (B) WE KNEW OR SHOULD HAVE KNOWN ABOUT 70 | THE POSSIBILITY OF SUCH DAMAGES, OR (C) THE LIMITED REMEDIES PROVIDED IN THIS 71 | SECTION FAIL OF THEIR ESSENTIAL PURPOSE; AND 72 | - ii. NOT APPLY TO ANY DAMAGE THAT LINKEDIN MAY CAUSE YOU INTENTIONALLY OR 73 | KNOWINGLY IN VIOLATION OF THESE TERMS OR APPLICABLE LAW, OR AS OTHERWISE 74 | MANDATED BY APPLICABLE LAW THAT CANNOT BE DISCLAIMED IN THESE TERMS. 75 | 76 | 6. Termination. This Agreement automatically terminates upon your breach of 77 | this Agreement or termination of your LinkedIn Learning subscription. On 78 | termination, all licenses granted under this Agreement will terminate 79 | immediately and you will delete the Licensed Materials. Sections 2-7 of this 80 | Agreement survive any termination of this Agreement. LinkedIn may discontinue 81 | the availability of some or all of the Licensed Materials at any time for any 82 | reason. 83 | 84 | 7. Miscellaneous. This Agreement will be governed by and construed in 85 | accordance with the laws of the State of California without regard to conflict 86 | of laws principles. The exclusive forum for any disputes arising out of or 87 | relating to this Agreement shall be an appropriate federal or state court 88 | sitting in the County of Santa Clara, State of California. If LinkedIn does 89 | not act to enforce a breach of this Agreement, that does not mean that 90 | LinkedIn has waived its right to enforce this Agreement. The Agreement does 91 | not create a partnership, agency relationship, or joint venture between the 92 | parties. Neither party has the power or authority to bind the other or to 93 | create any obligation or responsibility on behalf of the other. You may not, 94 | without LinkedIn’s prior written consent, assign or delegate any rights or 95 | obligations under these terms, including in connection with a change of 96 | control. Any purported assignment and delegation shall be ineffective. The 97 | Agreement shall bind and inure to the benefit of the parties, their respective 98 | successors and permitted assigns. If any provision of the Agreement is 99 | unenforceable, that provision will be modified to render it enforceable to the 100 | extent possible to give effect to the parties’ intentions and the remaining 101 | provisions will not be affected. This Agreement is the only agreement between 102 | you and LinkedIn regarding the Licensed Materials, and supersedes all prior 103 | agreements relating to the Licensed Materials. 104 | 105 | Last Updated: March 2019 106 | --------------------------------------------------------------------------------