├── hello.js └── .idea └── .gitignore /hello.js: -------------------------------------------------------------------------------- 1 | console.log("hello kiruthika.."); -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | 10 | *.xml 11 | *.iml --------------------------------------------------------------------------------