This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # AI Assistance Usage Guide for the Development Team | |
| _How to use AI tools (ChatGPT, GitHub Copilot, LLMs) responsibly and effectively_ | |
| ## 1. Purpose of This Guide | |
| This document provides clear guidelines for how developers should use AI tools to: | |
| - Improve productivity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const pets = ['Cat', 'Dog', 'Bird', 'Fish', 'Frog', 'Hamster', 'Pig', 'Horse', 'Lion', 'Dragon']; | |
| // Print all pets | |
| console.log(pets[0]); | |
| console.log(pets[1]); | |
| console.log(pets[2]); | |
| console.log(pets[3]); | |
| ... | |
| .cat { |