Skip to content

vineshghela/VineshGhela

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 

Repository files navigation

Hi there 👋

Vinesh Ghela GitHub stats

public class WhoAmI{ 
    
    private String name;
    private String job; 
    private String[] hobbies;
    private String location;
  
    public WhoAmI(String name, String job, String[] hobbies, String location){ 
        this.name = name; 
        this.job = job; 
        this.hobbies = hobbies; 
        this.location = location;
    } 
  
    public String getName() {
      return name; 
    } 
    public String getJob() {
        return job; 
    }
    public String[] getHobbies() { 
        return hobbies; 
    } 
    
    @Override
    public String toString() { 
        return("Hi my name is "+ this.getName()+ ", from" + this.getLocation() + 
        "! My Job is "+ this.getJob()+" and my hobbies are " + this.getHobbies();
    } 
  
    public static void main(String[] args) { 
        whoAmI vinesh = new WhoAmI(
            "Vinesh Ghela",
            "QA Developer",
            ["Reading", "Trying new food","Gym" ,"Chasing Semi-colons"], 
            "London, United Kingdom"); 
        
        System.out.println(vinesh); 
    } 
} 

💻 Techs, Languages & Tools I use

Java   JS   SQL   python   Spring   React   Express   JQuery   html-5   css   nodejs   Jest JunitSelenium EggPlant

My most used languages:point_down:

Vinesh Stats

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published