Grandhi VenkataSarvesh's repositories
Get-a-String
springboot coding practice-1
vprofile-project
devops demo
click-counter
https://gvsclickcounter.ccbp.tech/
Conditional-Rendering
gvscondrend.ccbp.tech
Import-and-Export-a-Function-using-Common-JS-Module-Syntax
Create two files exportFunction.js, importFunction.js parallel to README.md file. Write a JS function that returns the This is a Function text, in the file exportFunction.js and export it using the default export syntax. Import the function in the importFunction.js file. Use Common JS module syntax
Import-and-Export-a-Boolean-using-Common-JS-Module-Syntax
Create two files exportBoolean.js, importBoolean.js parallel to README.md file. Write a Boolean with the value as true in the exportBoolean.js file and export it using the default export syntax. Import the Boolean value in the importBoolean.js file. Use Common JS module syntax
Import-and-Export-an-Array-using-ES6-Module-Syntax
Create two files exportArray.mjs, importArray.mjs parallel to README.md file. Write an array with the values as "countries", 190, "continents", 7, false, 6.2 in the exportArray.mjs file and export it using the default export syntax. Import the array in the importArray.mjs file. Use the ES6 module syntax .